12345678910111213141516171819202122232425262728 |
- [package]
- name = "dragonreach"
- version = "0.1.0"
- edition = "2021"
- [[bin]]
- name = "dragonreach"
- path = "src/main.rs"
- [[bin]]
- name = "systemctl"
- path = "systemctl/src/main.rs"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- nix = "0.23"
- hashbrown = "0.11"
- cfg-if = { version = "1.0" }
- lazy_static = { version = "1.4.0" }
- libc = "0.2"
- humantime = "2.1"
- tokio = { version = "1.25", features = ["full"] }
- [profile.release]
- panic = 'abort'
- [profile.dev]
- panic = 'abort'
|