1
0
Fork 0
forked from koniifer/ableos

Working on supporrt for relib

This commit is contained in:
Able 2021-11-28 23:45:23 -06:00
parent d29ac66bac
commit b1bd0cacf6
8 changed files with 5 additions and 14 deletions

7
ableos/Cargo.lock generated
View file

@ -14,7 +14,6 @@ dependencies = [
"pic8259", "pic8259",
"psp", "psp",
"qoi_rs", "qoi_rs",
"rotcipher",
"spin", "spin",
"uart_16550", "uart_16550",
"volatile 0.2.7", "volatile 0.2.7",
@ -240,12 +239,6 @@ dependencies = [
"proc-macro2", "proc-macro2",
] ]
[[package]]
name = "rotcipher"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de32300b108f8ad8d30fb1f0d0b76fe9848488d274fa6cf0f5e022e4b609519f"
[[package]] [[package]]
name = "scopeguard" name = "scopeguard"
version = "1.1.0" version = "1.1.0"

View file

@ -17,8 +17,7 @@ run-args=["-serial", "stdio"]
spin = "0.5.2" spin = "0.5.2"
linked_list_allocator = "0.9.0" linked_list_allocator = "0.9.0"
lliw = "0.2.0" lliw = "0.2.0"
qoi_rs = "0.1.1" qoi_rs = "*"
rotcipher = "0.1.3"
[dependencies.wasmi] [dependencies.wasmi]

View file

@ -1,3 +0,0 @@
pub mod image;
pub use qoi_rs as qoi;

View file

@ -0,0 +1 @@
use qoi_rs;

View file

@ -1 +1 @@
pub use rotcipher;

View file

@ -1,4 +1,4 @@
pub mod graphics; pub mod image;
pub mod math; pub mod math;
pub mod time; pub mod time;
pub struct VectorTwo { pub struct VectorTwo {

View file

@ -0,0 +1 @@