Cargo.toml 1023 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [package]
  2. name = "darkfid"
  3. version = "0.4.1"
  4. homepage = "https://dark.fi"
  5. description = "DarkFi node daemon"
  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. [dependencies]
  11. # Darkfi
  12. darkfi = {path = "../../", features = ["async-daemonize", "bs58"]}
  13. darkfi_money_contract = {path = "../../src/contract/money"}
  14. darkfi-contract-test-harness = {path = "../../src/contract/test-harness"}
  15. darkfi-sdk = {path = "../../src/sdk"}
  16. darkfi-serial = "0.4.2"
  17. # Misc
  18. blake3 = "1.5.4"
  19. bs58 = "0.5.1"
  20. log = "0.4.22"
  21. num-bigint = "0.4.6"
  22. rand = "0.8.5"
  23. sled-overlay = "0.1.4"
  24. toml = "0.8.19"
  25. # JSON-RPC
  26. async-trait = "0.1.83"
  27. tinyjson = "2.5.1"
  28. url = "2.5.2"
  29. # Daemon
  30. easy-parallel = "3.3.1"
  31. signal-hook-async-std = "0.2.2"
  32. signal-hook = "0.3.17"
  33. simplelog = "0.12.2"
  34. smol = "2.0.2"
  35. # Argument parsing
  36. serde = {version = "1.0.210", features = ["derive"]}
  37. structopt = "0.3.26"
  38. structopt-toml = "0.5.1"
  39. [lints]
  40. workspace = true