xref: /DragonOS/kernel/Cargo.toml (revision bd70d2d1f490aabd570a5301b858bd5eb04149fa)
1[package]
2name = "dragonos_kernel"
3version = "0.1.10"
4edition = "2021"
5
6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8
9[lib]
10crate-type = ["staticlib"]
11
12[workspace]
13members = [
14    "crates/*",
15]
16
17[features]
18default = ["backtrace", "kvm", "fatfs", "fatfs-secure"]
19# 内核栈回溯
20backtrace = []
21# kvm
22kvm = []
23
24fatfs = []
25fatfs-secure = ["fatfs"]
26
27
28# 运行时依赖项
29[dependencies]
30acpi = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/acpi-rs.git", rev = "fb69243dcf" }
31asm_macros = { path = "crates/asm_macros" }
32atomic_enum = "=0.2.0"
33bit_field = "=0.10"
34bitfield-struct = "=0.5.3"
35bitflags = "=1.3.2"
36bitmap = { path = "crates/bitmap" }
37driver_base_macros = { "path" = "crates/driver_base_macros" }
38# 一个no_std的hashmap、hashset
39elf = { version = "=0.7.2", default-features = false }
40hashbrown = "=0.13.2"
41ida = { path = "src/libs/ida" }
42intertrait = { path = "crates/intertrait" }
43kdepends = { path = "crates/kdepends" }
44klog_types = { path = "crates/klog_types" }
45linkme = "=0.3.27"
46num = { version = "=0.4.0", default-features = false }
47num-derive = "=0.3"
48num-traits = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/num-traits.git", rev="1597c1c", default-features = false }
49smoltcp = { version = "=0.11.0", default-features = false, features = ["log", "alloc",  "socket-raw", "socket-udp", "socket-tcp", "socket-icmp", "socket-dhcpv4", "socket-dns", "proto-ipv4", "proto-ipv6"]}
50system_error = { path = "crates/system_error" }
51unified-init = { path = "crates/unified-init" }
52virtio-drivers = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/virtio-drivers", rev = "f91c807965" }
53fdt = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/fdt", rev = "9862813020" }
54uefi = { version = "=0.26.0", features = ["alloc"] }
55uefi-raw = "=0.5.0"
56paste = "=1.0.14"
57slabmalloc = { path = "crates/rust-slabmalloc" }
58log = "0.4.21"
59
60
61# target为x86_64时,使用下面的依赖
62[target.'cfg(target_arch = "x86_64")'.dependencies]
63mini-backtrace = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/mini-backtrace.git", rev = "e0b1d90940" }
64raw-cpuid = "11.0.1"
65x86 = "=0.52.0"
66x86_64 = "=0.14.10"
67
68# target为riscv64时,使用下面的依赖
69[target.'cfg(target_arch = "riscv64")'.dependencies]
70riscv = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/riscv.git", rev = "4241a97", features = [ "s-mode" ] }
71sbi-rt = { version = "=0.0.3", features = ["legacy"] }
72
73
74# 构建时依赖项
75[build-dependencies]
76kernel_build = { path = "../build-scripts/kernel_build" }
77
78[dependencies.lazy_static]
79version = "=1.4.0"
80# 由于在no_std环境,而lazy_static依赖了spin库,因此需要指定其使用no_std
81features = ["spin_no_std"]
82
83# The development profile, used for `cargo build`
84[profile.dev]
85# opt-level = 0  # Controls the --opt-level the compiler builds with
86debug = true   # Controls whether the compiler passes `-g`
87
88# The release profile, used for `cargo build --release`
89[profile.release]
90debug = false
91