asterinas/Cargo.toml

42 lines
1.0 KiB
TOML
Raw Normal View History

2022-08-16 02:41:25 +00:00
[package]
name = "jinux"
2023-08-11 07:58:22 +00:00
version = "0.1.1"
2022-08-16 02:41:25 +00:00
edition = "2021"
2023-04-10 03:12:42 +00:00
[[bin]]
name = "jinux"
path = "kernel/main.rs"
2022-08-16 02:41:25 +00:00
[dependencies]
2023-07-24 07:48:09 +00:00
jinux-frame = { path = "framework/jinux-frame" }
2023-03-06 06:19:23 +00:00
jinux-std = { path = "services/libs/jinux-std" }
2023-04-10 03:12:42 +00:00
component = { path = "services/libs/comp-sys/component" }
2022-08-16 02:41:25 +00:00
[dev-dependencies]
x86_64 = "0.14.2"
2023-03-25 09:16:37 +00:00
jinux-time = { path = "services/comps/time" }
2023-03-25 09:24:34 +00:00
jinux-framebuffer = { path = "services/comps/framebuffer" }
2022-08-08 20:34:16 +00:00
[workspace]
members = [
"build",
"framework/jinux-frame",
"services/comps/pci",
"services/comps/virtio",
"services/comps/input",
"services/comps/block",
2023-05-30 08:34:28 +00:00
"services/comps/network",
2023-03-25 09:24:34 +00:00
"services/comps/framebuffer",
2023-03-25 09:16:37 +00:00
"services/comps/time",
"services/libs/jinux-std",
"services/libs/jinux-rights-proc",
"services/libs/typeflags",
"services/libs/typeflags-util",
"services/libs/jinux-util",
2023-02-22 08:08:47 +00:00
"services/libs/cpio-decoder",
2023-04-17 07:39:12 +00:00
"services/libs/int-to-c-enum",
2022-08-08 20:34:16 +00:00
]
2022-08-16 02:41:25 +00:00
2023-04-10 03:12:42 +00:00
exclude = ["services/libs/comp-sys/controlled", "services/libs/comp-sys/cargo-component"]