asterinas/Cargo.toml

69 lines
1.6 KiB
TOML
Raw Normal View History

2022-08-16 02:41:25 +00:00
[package]
2023-12-25 03:17:56 +00:00
name = "asterinas"
version = "0.2.2"
2022-08-16 02:41:25 +00:00
edition = "2021"
2023-04-10 03:12:42 +00:00
[[bin]]
2023-12-25 03:17:56 +00:00
name = "asterinas"
2023-04-10 03:12:42 +00:00
path = "kernel/main.rs"
2022-08-16 02:41:25 +00:00
[dependencies]
2023-12-25 03:12:25 +00:00
aster-frame = { path = "framework/aster-frame" }
aster-std = { path = "services/libs/aster-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-12-25 03:12:25 +00:00
aster-time = { path = "services/comps/time" }
aster-framebuffer = { path = "services/comps/framebuffer" }
[profile.dev]
opt-level = 0
debug = true
lto = false
panic = "unwind"
[profile.release]
opt-level = 3
debug = false
lto = false
panic = "unwind"
2022-08-08 20:34:16 +00:00
[workspace]
members = [
"runner",
2023-12-25 03:12:25 +00:00
"framework/aster-frame",
"framework/aster-frame/src/arch/x86/boot/linux_boot/setup",
"framework/libs/align_ext",
"framework/libs/ktest",
"framework/libs/tdx-guest",
"services/comps/block",
2023-11-08 06:13:15 +00:00
"services/comps/console",
2023-03-25 09:24:34 +00:00
"services/comps/framebuffer",
"services/comps/input",
"services/comps/network",
2023-03-25 09:16:37 +00:00
"services/comps/time",
"services/comps/virtio",
"services/libs/cpio-decoder",
"services/libs/int-to-c-enum",
"services/libs/int-to-c-enum/derive",
2023-12-25 03:12:25 +00:00
"services/libs/aster-rights",
"services/libs/aster-rights-proc",
"services/libs/aster-std",
"services/libs/aster-util",
"services/libs/keyable-arc",
"services/libs/typeflags",
"services/libs/typeflags-util",
]
exclude = [
"services/libs/comp-sys/cargo-component",
"services/libs/comp-sys/component",
"services/libs/comp-sys/component-macro",
"services/libs/comp-sys/controlled",
]
2023-08-07 02:56:03 +00:00
[features]
2023-12-25 03:12:25 +00:00
intel_tdx = ["aster-frame/intel_tdx", "aster-std/intel_tdx"]