Cargo.toml 718 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. reqwest = "0.10"
  20. machine-uid = "0.2"
  21. mac_address = "1.1"
  22. whoami = "0.9"
  23. base64 = "0.13"
  24. [build-dependencies]
  25. hbb_common = { path = "libs/hbb_common" }
  26. [workspace]
  27. members = ["libs/hbb_common"]
  28. [dependencies.rocksdb]
  29. default-features = false
  30. features = ["lz4"]
  31. version = "0.15"