Cargo.toml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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://codeberg.org/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.2"
  23. bs58 = "0.5.1"
  24. futures = "0.3.31"
  25. lazy_static = "1.5.0"
  26. libc = "0.2"
  27. linenoise-rs = "0.1.1"
  28. num-bigint = "0.4.6"
  29. prettytable-rs = "0.10.0"
  30. rand = "0.8.5"
  31. rodio = {version = "0.21.1", default-features = false, features = ["playback", "mp3"]}
  32. rusqlite = {version = "0.37.0", features = ["sqlcipher"]}
  33. sled-overlay = "0.1.20"
  34. toml = "0.9.8"
  35. tracing = "0.1.44"
  36. url = "2.5.7"
  37. # Daemon
  38. easy-parallel = "3.3.1"
  39. signal-hook-async-std = "0.4.0"
  40. signal-hook = "0.4.1"
  41. tracing-subscriber = { version = "0.3.22", default-features = false, features = ["fmt"] }
  42. tracing-appender = "0.2.4"
  43. smol = "2.0.2"
  44. # Argument parsing
  45. serde = {version = "1.0.228", features = ["derive"]}
  46. structopt = "0.3.26"
  47. structopt-toml = "0.5.1"
  48. [lints]
  49. workspace = true