67 lines
2.6 KiB
TOML
67 lines
2.6 KiB
TOML
[package]
|
|
name = "ostd"
|
|
version = "0.8.0"
|
|
edition = "2021"
|
|
description = "Rust OS framework that facilitates the development of and innovation in OS kernels"
|
|
license = "MPL-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/asterinas/asterinas"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
# Settings for publishing docs in docs.rs
|
|
[package.metadata.docs.rs]
|
|
default-target = "x86_64-unknown-none"
|
|
targets = ["x86_64-unknown-none"]
|
|
|
|
[dependencies]
|
|
align_ext = { path = "libs/align_ext", version = "0.1.0" }
|
|
array-init = "2.0"
|
|
bit_field = "0.10.1"
|
|
buddy_system_allocator = "0.9.0"
|
|
bitflags = "1.3"
|
|
bitvec = { version = "1.0", default-features = false, features = ["alloc"] }
|
|
cfg-if = "1.0"
|
|
const-assert = "1.0"
|
|
gimli = { version = "0.28", default-features = false, features = ["read-core"] }
|
|
id-alloc = { path = "libs/id-alloc", version = "0.1.0" }
|
|
inherit-methods-macro = { git = "https://github.com/asterinas/inherit-methods-macro", rev = "98f7e3e", version = "0.1.0" }
|
|
int-to-c-enum = { path = "../kernel/libs/int-to-c-enum", version = "0.1.0" }
|
|
intrusive-collections = { version = "0.9.6", features = ["nightly"] }
|
|
lazy_static = { version = "1.0", features = ["spin_no_std"] }
|
|
linux-boot-params = { path = "libs/linux-bzimage/boot-params", version = "0.1.0" }
|
|
log = "0.4"
|
|
num = { version = "0.4", default-features = false }
|
|
num-derive = { version = "0.4", default-features = false }
|
|
num-traits = { version = "0.2", default-features = false }
|
|
ostd-macros = { version = "0.8.0", path = "libs/ostd-macros" }
|
|
ostd-test = { version = "0.8.0", path = "libs/ostd-test" }
|
|
owo-colors = { version = "3", optional = true }
|
|
ostd-pod = { git = "https://github.com/asterinas/ostd-pod", rev = "c4644be", version = "0.1.1" }
|
|
spin = "0.9.4"
|
|
static_assertions = "1.1.0"
|
|
trapframe = "0.10.0"
|
|
unwinding = { version = "0.2.2", default-features = false, features = ["fde-gnu-eh-frame-hdr", "hide-trace", "panic", "personality", "unwinder"] }
|
|
volatile = { version = "0.4.5", features = ["unstable"] }
|
|
xarray = { git = "https://github.com/asterinas/xarray", version = "0.1.0" }
|
|
|
|
[target.x86_64-unknown-none.dependencies]
|
|
x86_64 = "0.14.2"
|
|
x86 = "0.52.0"
|
|
acpi = "4.1.1"
|
|
aml = "0.16.3"
|
|
multiboot2 = "0.20.2"
|
|
rsdp = "2.0.0"
|
|
iced-x86 = { version = "1.21.0", default-features = false, features = [
|
|
"no_std",
|
|
"decoder",
|
|
"gas",
|
|
], optional = true }
|
|
tdx-guest = { version = "0.1.7", optional = true }
|
|
|
|
[features]
|
|
default = ["cvm_guest", "log_color"]
|
|
log_color = ["dep:owo-colors"]
|
|
# The guest OS support for Confidential VMs (CVMs), e.g., Intel TDX
|
|
cvm_guest = ["dep:tdx-guest", "dep:iced-x86"]
|