Cargo.toml 776 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. [build-dependencies]
  26. hbb_common = { path = "libs/hbb_common" }
  27. [workspace]
  28. members = ["libs/hbb_common"]
  29. [dependencies.rocksdb]
  30. default-features = false
  31. features = ["lz4"]
  32. version = "0.15"