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]
|
2023-03-25 09:16:37 +00:00
|
|
|
jinux-frame = { path = "../../../framework/jinux-frame" }
|
2023-04-10 03:12:42 +00:00
|
|
|
align_ext = { path = "../../../framework/libs/align_ext" }
|
2023-04-02 05:32:03 +00:00
|
|
|
pod = { git = "https://github.com/jinzhao-dev/pod", rev = "7fa2ed2" }
|
2023-03-25 09:16:37 +00:00
|
|
|
jinux-input = { path = "../../comps/input" }
|
|
|
|
jinux-block = { path = "../../comps/block" }
|
|
|
|
jinux-time = { path = "../../comps/time" }
|
2023-04-10 03:12:42 +00:00
|
|
|
controlled = { path = "../../libs/comp-sys/controlled" }
|
2023-03-25 09:16:37 +00:00
|
|
|
typeflags = { path = "../typeflags" }
|
|
|
|
typeflags-util = { path = "../typeflags-util" }
|
|
|
|
jinux-rights-proc = { path = "../jinux-rights-proc" }
|
|
|
|
jinux-util = { path = "../jinux-util" }
|
|
|
|
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"
|
2023-03-09 08:55:57 +00:00
|
|
|
time = { version = "0.3", default-features = false, features = ["alloc"] }
|
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"
|
2023-03-31 03:43:05 +00:00
|
|
|
ringbuf = { version = "0.3.2", default-features = false, features = ["alloc"] }
|
|
|
|
keyable-arc = { path = "../keyable-arc" }
|
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-03-25 09:16:37 +00:00
|
|
|
log = "0.4"
|
2022-09-16 03:14:46 +00:00
|
|
|
|
|
|
|
[dependencies.lazy_static]
|
|
|
|
version = "1.0"
|
|
|
|
features = ["spin_no_std"]
|