xref: /DragonReach/Cargo.toml (revision 909e4d102ffeb8646e7346c10b007cb0861226a4)
1[package]
2name = "dragon_reach"
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 = "8b1e314e01"}
18dragonos-dsc = { git = "https://git.mirrors.dragonos.org/DragonOS-Community/dragonos-dsc.git", rev = "aa61cb0109" }
19
20lazy_static = { version = "1.4.0", default-features = false, features = ["spin_no_std"] }
21
22[target.'cfg(not(target_os = "dragonos"))'.dependencies]
23lazy_static = { version = "1.4.0" }
24
25[profile.release]
26panic = 'abort'
27
28[profile.dev]
29panic = 'abort'
30