forked from AbleOS/ableos
work on relib
This commit is contained in:
parent
a9bd94e910
commit
d29ac66bac
14
ableos/Cargo.lock
generated
14
ableos/Cargo.lock
generated
|
@ -13,6 +13,8 @@ dependencies = [
|
|||
"lliw",
|
||||
"pic8259",
|
||||
"psp",
|
||||
"qoi_rs",
|
||||
"rotcipher",
|
||||
"spin",
|
||||
"uart_16550",
|
||||
"volatile 0.2.7",
|
||||
|
@ -223,6 +225,12 @@ dependencies = [
|
|||
"paste",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "qoi_rs"
|
||||
version = "0.1.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f7ac44f12a8cec33865a699b2257e8454499fb4c3b13835710ff35c66bb65669"
|
||||
|
||||
[[package]]
|
||||
name = "quote"
|
||||
version = "1.0.10"
|
||||
|
@ -232,6 +240,12 @@ 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,32 +17,19 @@ 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"
|
||||
|
||||
|
||||
[dependencies.wasmi]
|
||||
version = "*"
|
||||
default-features = false
|
||||
features = ["core"]
|
||||
|
||||
|
||||
|
||||
[dependencies.lazy_static]
|
||||
features = ["spin_no_std"]
|
||||
version = "1.0"
|
||||
|
||||
|
||||
|
||||
|
||||
# [dependencies.rhai]
|
||||
# version = "*"
|
||||
# features = ["no_std"]
|
||||
|
||||
# alloc required
|
||||
# [dependencies.wasmi]
|
||||
# version = "*"
|
||||
# default-features = false
|
||||
# features = ["core"]
|
||||
|
||||
|
||||
[target.'cfg(target_arch = "mips")'.dependencies]
|
||||
psp = "0.1.5"
|
||||
|
||||
|
|
3
ableos/src/relib/graphics/images_formats/mod.rs
Normal file
3
ableos/src/relib/graphics/images_formats/mod.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
pub mod image;
|
||||
|
||||
pub use qoi_rs as qoi;
|
0
ableos/src/relib/graphics/mod.rs
Normal file
0
ableos/src/relib/graphics/mod.rs
Normal file
1
ableos/src/relib/math/ciphers/mod.rs
Normal file
1
ableos/src/relib/math/ciphers/mod.rs
Normal file
|
@ -0,0 +1 @@
|
|||
pub use rotcipher;
|
|
@ -1 +1,2 @@
|
|||
pub mod ciphers;
|
||||
pub mod rand;
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
pub mod graphics;
|
||||
pub mod math;
|
||||
pub mod time;
|
||||
pub struct VectorTwo {
|
||||
|
|
Loading…
Reference in a new issue