xref: /DragonReach/Cargo.toml (revision f206f17adf7b13bcbc7a739d44eada5c810b68fe)
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://git.mirrors.dragonos.org/DragonOS-Community/drstd.git", revision = "a4d693c682"}
18lazy_static = { version = "1.4.0", default-features = false, features = ["spin_no_std"] }
19
20[target.'cfg(not(target_os = "dragonos"))'.dependencies]
21lazy_static = {version = "1.4.0"}
22
23[profile.release]
24panic = 'abort'
25
26[profile.dev]
27panic = 'abort'