Cargo.toml 576 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "hbbs"
  3. version = "1.0.0"
  4. authors = ["open-trade <info@opentradesolutions.com>"]
  5. edition = "2018"
  6. build= "build.rs"
  7. [[bin]]
  8. name = "hbbr"
  9. path = "src/hbbr/main.rs"
  10. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [dependencies]
  12. hbb_common = { path = "libs/hbb_common" }
  13. sled = "0.31"
  14. serde_derive = "1.0"
  15. serde = "1.0"
  16. serde_json = "1.0"
  17. lazy_static = "1.4"
  18. clap = "2.33"
  19. rust-ini = "0.15"
  20. [build-dependencies]
  21. cc = "1.0"
  22. hbb_common = { path = "libs/hbb_common" }
  23. [workspace]
  24. members = ["libs/hbb_common"]