xref: /DragonReach/Cargo.toml (revision dfd3fd9812f3584f9392934d1254e24d17661b2d)
1[package]
2name = "dragon_reach"
3version = "0.1.0"
4edition = "2021"
5
6[[bin]]
7name = "DragonReach"
8path = "src/main.rs"
9
10[[bin]]
11name = "systemctl"
12path = "systemctl/src/main.rs"
13
14# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
15
16[dependencies]
17hashbrown = "0.11"
18cfg-if = { version = "1.0"}
19lazy_static = { version = "1.4.0" }
20libc = "0.2"
21
22[profile.release]
23panic = 'abort'
24
25[profile.dev]
26panic = 'abort'
27