Cargo.toml 452 B

1234567891011121314151617181920212223242526
  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. [profile.release]
  18. panic = 'abort'
  19. [profile.dev]
  20. panic = 'abort'