Cargo.toml 789 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [package]
  2. name = "hbbs"
  3. version = "1.1.4"
  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. minreq = { version = "2.3.1", features = ["punycode"] }
  20. machine-uid = "0.2"
  21. mac_address = "1.1"
  22. whoami = "0.9"
  23. base64 = "0.13"
  24. cryptoxide = "0.3"
  25. rand = "0.8"
  26. [build-dependencies]
  27. hbb_common = { path = "libs/hbb_common" }
  28. [workspace]
  29. members = ["libs/hbb_common"]
  30. [dependencies.rocksdb]
  31. default-features = false
  32. features = ["lz4"]
  33. version = "0.15"