74 lines
2.4 KiB
TOML
74 lines
2.4 KiB
TOML
[package]
|
|
name = "jinux-std"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
jinux-frame = { path = "../../../framework/jinux-frame" }
|
|
align_ext = { path = "../../../framework/libs/align_ext" }
|
|
pod = { git = "https://github.com/jinzhao-dev/pod", rev = "d7dba56" }
|
|
jinux-input = { path = "../../comps/input" }
|
|
jinux-block = { path = "../../comps/block" }
|
|
jinux-network = { path = "../../comps/network" }
|
|
jinux-console = { path = "../../comps/console" }
|
|
jinux-time = { path = "../../comps/time" }
|
|
jinux-virtio = { path = "../../comps/virtio" }
|
|
jinux-rights = { path = "../jinux-rights" }
|
|
controlled = { path = "../../libs/comp-sys/controlled" }
|
|
typeflags = { path = "../typeflags" }
|
|
typeflags-util = { path = "../typeflags-util" }
|
|
jinux-rights-proc = { path = "../jinux-rights-proc" }
|
|
jinux-util = { path = "../jinux-util" }
|
|
int-to-c-enum = { path = "../../libs/int-to-c-enum" }
|
|
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"
|
|
time = { version = "0.3", default-features = false, features = ["alloc"] }
|
|
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",
|
|
] }
|
|
ktest = { path = "../../../framework/libs/ktest" }
|
|
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
|
|
bitflags = "1.3"
|
|
ringbuf = { version = "0.3.2", default-features = false, features = ["alloc"] }
|
|
keyable-arc = { path = "../keyable-arc" }
|
|
# unzip initramfs
|
|
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"
|
|
spin = "0.9.4"
|
|
vte = "0.10"
|
|
lru = "0.9.0"
|
|
log = "0.4"
|
|
getrandom = { version = "0.2.10", default-features = false, features = [
|
|
"rdrand",
|
|
] }
|
|
|
|
[dependencies.lazy_static]
|
|
version = "1.0"
|
|
features = ["spin_no_std"]
|
|
|
|
[features]
|
|
intel_tdx = ["dep:tdx-guest"]
|