asterinas/services/libs/jinux-std/Cargo.toml

74 lines
2.4 KiB
TOML
Raw Normal View History

2022-08-08 19:44:53 +00:00
[package]
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-11-08 06:45:14 +00:00
pod = { git = "https://github.com/jinzhao-dev/pod", rev = "d7dba56" }
2023-03-25 09:16:37 +00:00
jinux-input = { path = "../../comps/input" }
jinux-block = { path = "../../comps/block" }
2023-05-30 08:34:28 +00:00
jinux-network = { path = "../../comps/network" }
2023-11-08 06:13:15 +00:00
jinux-console = { path = "../../comps/console" }
2023-03-25 09:16:37 +00:00
jinux-time = { path = "../../comps/time" }
2023-08-28 07:03:28 +00:00
jinux-virtio = { path = "../../comps/virtio" }
jinux-rights = { path = "../jinux-rights" }
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" }
2023-04-17 08:11:36 +00:00
int-to-c-enum = { path = "../../libs/int-to-c-enum" }
2023-03-25 09:16:37 +00:00
cpio-decoder = { path = "../cpio-decoder" }
virtio-input-decoder = "0.1.4"
ascii = { version = "1.1", default-features = false, features = ["alloc"] }
intrusive-collections = "0.9.5"
2023-03-09 08:55:57 +00:00
time = { version = "0.3", default-features = false, features = ["alloc"] }
2023-08-28 07:03:28 +00:00
smoltcp = { version = "0.9.1", default-features = false, features = [
"alloc",
"log",
"medium-ethernet",
"medium-ip",
"proto-dhcpv4",
"proto-ipv4",
"proto-igmp",
"socket-icmp",
"socket-udp",
"socket-tcp",
"socket-raw",
"socket-dhcpv4",
] }
2023-11-04 08:41:30 +00:00
ktest = { path = "../../../framework/libs/ktest" }
2023-08-07 02:56:03 +00:00
tdx-guest = { path = "../../../framework/libs/tdx-guest", optional = true }
# 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" }
2023-06-19 08:28:14 +00:00
# unzip initramfs
2023-08-28 07:03:28 +00:00
libflate = { git = "https://github.com/jinzhao-dev/libflate", rev = "b781da6", features = [
"no_std",
] }
core2 = { version = "0.4", default_features = false, features = ["alloc"] }
lending-iterator = "0.1.7"
2022-08-23 09:50:07 +00:00
spin = "0.9.4"
2022-11-21 11:09:23 +00:00
vte = "0.10"
lru = "0.9.0"
2023-03-25 09:16:37 +00:00
log = "0.4"
2023-08-28 07:03:28 +00:00
getrandom = { version = "0.2.10", default-features = false, features = [
"rdrand",
] }
2022-09-16 03:14:46 +00:00
[dependencies.lazy_static]
version = "1.0"
features = ["spin_no_std"]
2023-08-07 02:56:03 +00:00
[features]
intel_tdx = ["dep:tdx-guest"]