forked from AbleOS/ableos
Working on supporrt for relib
This commit is contained in:
parent
d29ac66bac
commit
b1bd0cacf6
7
ableos/Cargo.lock
generated
7
ableos/Cargo.lock
generated
|
@ -14,7 +14,6 @@ dependencies = [
|
|||
"pic8259",
|
||||
"psp",
|
||||
"qoi_rs",
|
||||
"rotcipher",
|
||||
"spin",
|
||||
"uart_16550",
|
||||
"volatile 0.2.7",
|
||||
|
@ -240,12 +239,6 @@ dependencies = [
|
|||
"proc-macro2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rotcipher"
|
||||
version = "0.1.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "de32300b108f8ad8d30fb1f0d0b76fe9848488d274fa6cf0f5e022e4b609519f"
|
||||
|
||||
[[package]]
|
||||
name = "scopeguard"
|
||||
version = "1.1.0"
|
||||
|
|
|
@ -17,8 +17,7 @@ run-args=["-serial", "stdio"]
|
|||
spin = "0.5.2"
|
||||
linked_list_allocator = "0.9.0"
|
||||
lliw = "0.2.0"
|
||||
qoi_rs = "0.1.1"
|
||||
rotcipher = "0.1.3"
|
||||
qoi_rs = "*"
|
||||
|
||||
|
||||
[dependencies.wasmi]
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
pub mod image;
|
||||
|
||||
pub use qoi_rs as qoi;
|
1
ableos/src/relib/image/mod.rs
Normal file
1
ableos/src/relib/image/mod.rs
Normal file
|
@ -0,0 +1 @@
|
|||
use qoi_rs;
|
|
@ -1 +1 @@
|
|||
pub use rotcipher;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
pub mod graphics;
|
||||
pub mod image;
|
||||
pub mod math;
|
||||
pub mod time;
|
||||
pub struct VectorTwo {
|
||||
|
|
1
ableos/src/relib/security/mod.rs
Normal file
1
ableos/src/relib/security/mod.rs
Normal file
|
@ -0,0 +1 @@
|
|||
|
Loading…
Reference in a new issue