2022-08-08 01:01:42 +00:00
|
|
|
[package]
|
2024-06-19 08:18:39 +00:00
|
|
|
name = "ostd"
|
2024-12-02 02:18:16 +00:00
|
|
|
version = "0.10.0"
|
2022-08-08 01:01:42 +00:00
|
|
|
edition = "2021"
|
2024-07-01 08:00:09 +00:00
|
|
|
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"
|
2022-08-08 01:01:42 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2024-07-01 08:00:09 +00:00
|
|
|
# Settings for publishing docs in docs.rs
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
default-target = "x86_64-unknown-none"
|
|
|
|
targets = ["x86_64-unknown-none"]
|
|
|
|
|
2022-08-08 01:01:42 +00:00
|
|
|
[dependencies]
|
2024-07-01 08:00:09 +00:00
|
|
|
align_ext = { path = "libs/align_ext", version = "0.1.0" }
|
2023-11-04 16:14:28 +00:00
|
|
|
bit_field = "0.10.1"
|
2024-09-10 06:41:51 +00:00
|
|
|
buddy_system_allocator = { version = "0.10", default-features = false, features = ["alloc"] }
|
2022-08-16 02:41:25 +00:00
|
|
|
bitflags = "1.3"
|
2023-11-04 16:14:28 +00:00
|
|
|
bitvec = { version = "1.0", default-features = false, features = ["alloc"] }
|
|
|
|
cfg-if = "1.0"
|
2024-07-30 03:30:13 +00:00
|
|
|
const-assert = "1.0"
|
2023-11-09 04:26:20 +00:00
|
|
|
gimli = { version = "0.28", default-features = false, features = ["read-core"] }
|
2024-07-01 08:00:09 +00:00
|
|
|
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"] }
|
2024-12-02 02:18:16 +00:00
|
|
|
linux-boot-params = { version = "0.10.0", path = "libs/linux-bzimage/boot-params" }
|
2023-11-04 16:14:28 +00:00
|
|
|
log = "0.4"
|
2024-06-14 15:07:50 +00:00
|
|
|
num = { version = "0.4", default-features = false }
|
|
|
|
num-derive = { version = "0.4", default-features = false }
|
|
|
|
num-traits = { version = "0.2", default-features = false }
|
2024-12-02 02:18:16 +00:00
|
|
|
ostd-macros = { version = "0.10.0", path = "libs/ostd-macros" }
|
|
|
|
ostd-test = { version = "0.10.0", path = "libs/ostd-test" }
|
2024-07-01 08:00:09 +00:00
|
|
|
owo-colors = { version = "3", optional = true }
|
|
|
|
ostd-pod = { git = "https://github.com/asterinas/ostd-pod", rev = "c4644be", version = "0.1.1" }
|
2023-11-04 16:14:28 +00:00
|
|
|
spin = "0.9.4"
|
2024-09-23 01:57:17 +00:00
|
|
|
smallvec = "1.13.2"
|
2023-10-08 09:40:58 +00:00
|
|
|
static_assertions = "1.1.0"
|
2024-10-13 13:39:47 +00:00
|
|
|
unwinding = { version = "0.2.3", default-features = false, features = ["fde-gnu-eh-frame-hdr", "hide-trace", "panic", "personality", "unwinder"] }
|
2023-11-04 16:14:28 +00:00
|
|
|
volatile = { version = "0.4.5", features = ["unstable"] }
|
2024-08-12 08:12:25 +00:00
|
|
|
xarray = { git = "https://github.com/asterinas/xarray", version = "0.1.0" }
|
2022-09-06 12:20:43 +00:00
|
|
|
|
2024-02-27 12:28:43 +00:00
|
|
|
[target.x86_64-unknown-none.dependencies]
|
2024-11-30 10:58:18 +00:00
|
|
|
x86_64 = "0.14.13"
|
2023-03-29 07:42:49 +00:00
|
|
|
x86 = "0.52.0"
|
2024-10-10 06:18:58 +00:00
|
|
|
acpi = "5.1.0"
|
2023-04-02 05:32:03 +00:00
|
|
|
aml = "0.16.3"
|
2024-09-18 09:07:58 +00:00
|
|
|
multiboot2 = "0.23.0"
|
2024-07-03 08:32:35 +00:00
|
|
|
iced-x86 = { version = "1.21.0", default-features = false, features = [
|
|
|
|
"no_std",
|
|
|
|
"decoder",
|
|
|
|
"gas",
|
|
|
|
], optional = true }
|
2024-08-09 10:56:43 +00:00
|
|
|
tdx-guest = { version = "0.1.7", optional = true }
|
2023-03-25 09:27:09 +00:00
|
|
|
|
2024-09-24 14:14:30 +00:00
|
|
|
[target.riscv64gc-unknown-none-elf.dependencies]
|
|
|
|
riscv = { version = "0.11.1", features = ["s-mode"] }
|
|
|
|
sbi-rt = "0.0.3"
|
|
|
|
fdt = { version = "0.1.5", features = ["pretty-printing"] }
|
|
|
|
|
2022-09-06 12:20:43 +00:00
|
|
|
[features]
|
2024-08-09 05:21:52 +00:00
|
|
|
default = ["cvm_guest", "log_color"]
|
2024-07-03 08:32:35 +00:00
|
|
|
log_color = ["dep:owo-colors"]
|
2024-08-09 05:21:52 +00:00
|
|
|
# The guest OS support for Confidential VMs (CVMs), e.g., Intel TDX
|
|
|
|
cvm_guest = ["dep:tdx-guest", "dep:iced-x86"]
|