2022-08-08 19:44:53 +00:00
|
|
|
[package]
|
2022-11-22 08:42:26 +00:00
|
|
|
name = "jinux-std"
|
2022-08-08 19:44:53 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-22 08:42:26 +00:00
|
|
|
jinux-frame = {path = "../../../framework/jinux-frame"}
|
|
|
|
pod = {path = "../../../framework/pod"}
|
2023-02-27 08:18:04 +00:00
|
|
|
jinux-input = {path="../../comps/input"}
|
|
|
|
jinux-block = {path="../../comps/block"}
|
2023-02-07 08:05:21 +00:00
|
|
|
controlled = { path = "../../comp-sys/controlled" }
|
2022-11-22 08:42:26 +00:00
|
|
|
typeflags = {path="../typeflags"}
|
|
|
|
typeflags-util = {path="../typeflags-util"}
|
|
|
|
jinux-rights-proc = {path="../jinux-rights-proc"}
|
2022-11-23 10:13:40 +00:00
|
|
|
jinux-util = {path="../jinux-util"}
|
2023-03-03 02:47:14 +00:00
|
|
|
cpio-decoder = {path="../cpio-decoder"}
|
2022-12-26 12:33:27 +00:00
|
|
|
virtio-input-decoder = "0.1.4"
|
2023-01-03 02:40:01 +00:00
|
|
|
ascii = { version = "1.1", default-features = false, features = ["alloc"] }
|
2023-02-15 09:23:27 +00:00
|
|
|
intrusive-collections = "0.9.5"
|
2022-08-17 06:48:01 +00:00
|
|
|
|
|
|
|
# parse elf file
|
|
|
|
xmas-elf = "0.8.0"
|
|
|
|
# goblin = {version= "0.5.3", default-features = false, features = ["elf64"]}
|
|
|
|
# data-structures
|
2022-09-16 03:14:46 +00:00
|
|
|
bitflags = "1.3"
|
2022-11-21 11:09:23 +00:00
|
|
|
ringbuffer = "0.10.0"
|
2022-08-17 06:48:01 +00:00
|
|
|
|
2022-08-23 09:50:07 +00:00
|
|
|
spin = "0.9.4"
|
2022-11-21 11:09:23 +00:00
|
|
|
vte = "0.10"
|
2023-01-04 09:26:49 +00:00
|
|
|
lru = "0.9.0"
|
2023-02-22 14:57:19 +00:00
|
|
|
log= "0.4"
|
2022-09-16 03:14:46 +00:00
|
|
|
|
|
|
|
[dependencies.lazy_static]
|
|
|
|
version = "1.0"
|
|
|
|
features = ["spin_no_std"]
|