Cargo.toml 641 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "hbbs"
  3. version = "1.1.3"
  4. authors = ["open-trade <info@opentradesolutions.com>"]
  5. edition = "2018"
  6. build= "build.rs"
  7. [[bin]]
  8. name = "hbbr"
  9. path = "src/hbbr.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. serde_derive = "1.0"
  14. serde = "1.0"
  15. serde_json = "1.0"
  16. lazy_static = "1.4"
  17. clap = "2.33"
  18. rust-ini = "0.16"
  19. [build-dependencies]
  20. cc = "1.0"
  21. hbb_common = { path = "libs/hbb_common" }
  22. [workspace]
  23. members = ["libs/hbb_common"]
  24. [dependencies.rocksdb]
  25. default-features = false
  26. features = ["lz4"]
  27. version = "0.15"