xref: /DragonReach/Cargo.toml (revision 3751eb91e3da1c83238d81331b38efb0aeb5832b)
1[package]
2name = "DragonReach"
3version = "0.1.0"
4edition = "2021"
5
6[[bin]]
7name = "DragonReach"
8path = "src/main.rs"
9
10# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
11
12[dependencies]
13hashbrown = "0.11"
14cfg-if = { version = "1.0"}
15
16[target.'cfg(target_os = "dragonos")'.dependencies]
17drstd = {git = "https://github.com/DragonOS-Community/drstd.git", revision = "a84e10c"}
18
19lazy_static = { version = "1.4.0", default-features = false, features = ["spin_no_std"] }
20
21[target.'cfg(not(target_os = "dragonos"))'.dependencies]
22lazy_static = {version = "1.4.0"}
23
24[profile.release]
25panic = 'abort'
26
27[profile.dev]
28panic = 'abort'
29