Cargo.toml 471 B

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