2022-08-08 01:01:42 +00:00
|
|
|
[package]
|
2024-06-19 08:18:39 +00:00
|
|
|
name = "ostd"
|
2022-08-08 01:01:42 +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]
|
2024-06-19 08:18:39 +00:00
|
|
|
align_ext = { path = "libs/align_ext" }
|
2024-06-20 06:16:04 +00:00
|
|
|
ostd-macros = { path = "libs/ostd-macros" }
|
2023-11-04 16:14:28 +00:00
|
|
|
bit_field = "0.10.1"
|
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"] }
|
2024-06-19 08:18:39 +00:00
|
|
|
linux-boot-params = { path = "libs/linux-bzimage/boot-params" }
|
2023-03-08 08:33:33 +00:00
|
|
|
buddy_system_allocator = "0.9.0"
|
2023-11-04 16:14:28 +00:00
|
|
|
cfg-if = "1.0"
|
2023-11-09 04:26:20 +00:00
|
|
|
gimli = { version = "0.28", default-features = false, features = ["read-core"] }
|
2023-12-26 02:50:01 +00:00
|
|
|
inherit-methods-macro = { git = "https://github.com/asterinas/inherit-methods-macro", rev = "98f7e3e" }
|
2024-04-08 06:26:36 +00:00
|
|
|
xarray = { git = "https://github.com/asterinas/xarray", rev = "72a4067" }
|
2024-06-19 08:18:39 +00:00
|
|
|
int-to-c-enum = { path = "../kernel/libs/int-to-c-enum" }
|
2024-03-27 03:17:07 +00:00
|
|
|
# instrusive-collections of version 0.9.6 fails to compile with current rust toolchain,
|
|
|
|
# So we set a fixed version 0.9.5 for this crate
|
2024-05-31 04:24:46 +00:00
|
|
|
intrusive-collections = { version = "=0.9.5", features = ["nightly"] }
|
|
|
|
array-init = "2.0"
|
2024-06-19 08:18:39 +00:00
|
|
|
ktest = { path = "libs/ktest" }
|
|
|
|
id-alloc = { path = "libs/id-alloc" }
|
2023-03-06 06:19:23 +00:00
|
|
|
lazy_static = { version = "1.0", features = ["spin_no_std"] }
|
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 }
|
2023-12-26 02:50:01 +00:00
|
|
|
pod = { git = "https://github.com/asterinas/pod", rev = "d7dba56" }
|
2023-11-04 16:14:28 +00:00
|
|
|
spin = "0.9.4"
|
2023-10-08 09:40:58 +00:00
|
|
|
static_assertions = "1.1.0"
|
2024-04-28 07:31:56 +00:00
|
|
|
tdx-guest = { version = "0.1.0", optional = true }
|
2024-06-20 09:00:49 +00:00
|
|
|
trapframe = { git = "https://github.com/asterinas/trapframe-rs", rev = "4739428" }
|
2024-06-20 15:52:43 +00:00
|
|
|
# This version is in the upstream trunk branch which fixes a `r#try` usage.
|
|
|
|
# We could switch back to "crates.io" when they publish a new version.
|
|
|
|
unwinding = { git = "https://github.com/nbdd0121/unwinding.git", rev = "d7cd46e", 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"] }
|
2022-09-06 12:20:43 +00:00
|
|
|
|
2024-02-27 12:28:43 +00:00
|
|
|
[target.x86_64-unknown-none.dependencies]
|
2023-03-29 07:42:49 +00:00
|
|
|
x86_64 = "0.14.2"
|
|
|
|
x86 = "0.52.0"
|
|
|
|
acpi = "4.1.1"
|
2023-04-02 05:32:03 +00:00
|
|
|
aml = "0.16.3"
|
2024-06-20 08:48:20 +00:00
|
|
|
multiboot2 = "0.20.2"
|
2023-08-27 12:11:44 +00:00
|
|
|
rsdp = "2.0.0"
|
2024-03-11 06:02:42 +00:00
|
|
|
iced-x86 = { version = "1.21.0", default-features = false, features = [ "no_std", "decoder", "gas" ], optional = true }
|
2023-03-25 09:27:09 +00:00
|
|
|
|
2022-09-06 12:20:43 +00:00
|
|
|
[features]
|
2024-03-11 06:02:42 +00:00
|
|
|
intel_tdx = ["dep:tdx-guest", "dep:iced-x86"]
|