Cargo.toml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. num-bigint = "0.4.6"
  29. prettytable-rs = "0.10.0"
  30. rand = "0.8.6"
  31. rodio = { git = "https://github.com/RustAudio/rodio", default-features = false, features = ["playback", "mp3"] }
  32. toml = "0.9.8"
  33. tracing = "0.1.44"
  34. turso = "0.7.0-pre.14"
  35. url = "2.5.8"
  36. # Disable crates logging on release builds
  37. log = { version = "0.4", features = ["release_max_level_off"] }
  38. # Daemon
  39. easy-parallel = "3.3.1"
  40. tracing-subscriber = { version = "0.3.23", default-features = false, features = ["fmt"] }
  41. tracing-appender = "0.2.5"
  42. smol = "2.0.2"
  43. # Argument parsing
  44. serde = {version = "1.0.228", features = ["derive"]}
  45. structopt = "0.3.26"
  46. structopt-toml = "0.5.1"
  47. [target.'cfg(not(target_os = "windows"))'.dependencies]
  48. signal-hook-async-std = "0.4.0"
  49. signal-hook = "0.4.4"
  50. linenoise-rs = "0.1.1"
  51. [lints]
  52. workspace = true