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"}
|
|
|
|
pod-derive = {path = "../../../framework/pod-derive"}
|
|
|
|
jinux-pci = {path="../../comps/jinux-pci"}
|
|
|
|
jinux-virtio = {path="../../comps/jinux-virtio"}
|
|
|
|
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"}
|
2022-12-26 12:33:27 +00:00
|
|
|
virtio-input-decoder = "0.1.4"
|
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"
|
2022-09-16 03:14:46 +00:00
|
|
|
|
|
|
|
[dependencies.lazy_static]
|
|
|
|
version = "1.0"
|
|
|
|
features = ["spin_no_std"]
|