Cargo.toml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. [package]
  2. name = "drk"
  3. version = "0.5.0"
  4. homepage = "https://dark.fi"
  5. description = "Command-line client for darkfid"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. repository = "https://git.dark.fi/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [lib]
  11. path = "src/lib.rs"
  12. crate-type = ["cdylib", "rlib"]
  13. [dependencies]
  14. # Darkfi
  15. darkfi = {path = "../../", features = ["async-daemonize", "bs58", "rpc"]}
  16. darkfi_money_contract = {path = "../../src/contract/money", features = ["no-entrypoint", "client"]}
  17. darkfi_dao_contract = {path = "../../src/contract/dao", features = ["no-entrypoint", "client"]}
  18. darkfi_deployooor_contract = {path = "../../src/contract/deployooor", features = ["no-entrypoint", "client"]}
  19. darkfi-sdk = {path = "../../src/sdk", features = ["async"]}
  20. darkfi-serial = {path = "../../src/serial"}
  21. # Misc
  22. blake3 = "1.8.5"
  23. bs58 = "0.5.1"
  24. futures = "0.3.32"
  25. kvdb-overlay = {git = "https://git.dark.fi/darkrenaissance/kvdb-overlay", version = "0.1.0"}
  26. lazy_static = "1.5.0"
  27. libc = "0.2"
  28. linenoise-rs = "0.1.1"
  29. num-bigint = "0.4.6"
  30. prettytable-rs = "0.10.0"
  31. rand = "0.8.6"
  32. rodio = { git = "https://github.com/RustAudio/rodio", default-features = false, features = ["playback", "mp3"] }
  33. toml = "0.9.8"
  34. tracing = "0.1.44"
  35. turso = "0.7.0-pre.14"
  36. url = "2.5.8"
  37. # Disable crates logging on release builds
  38. log = { version = "0.4", features = ["release_max_level_off"] }
  39. # Daemon
  40. easy-parallel = "3.3.1"
  41. signal-hook-async-std = "0.4.0"
  42. signal-hook = "0.4.4"
  43. tracing-subscriber = { version = "0.3.23", default-features = false, features = ["fmt"] }
  44. tracing-appender = "0.2.5"
  45. smol = "2.0.2"
  46. # Argument parsing
  47. serde = {version = "1.0.228", features = ["derive"]}
  48. structopt = "0.3.26"
  49. structopt-toml = "0.5.1"
  50. [lints]
  51. workspace = true