Cargo.toml 892 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "rlnd"
  3. version = "0.4.1"
  4. description = "DarkFi RLN state management daemon."
  5. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  6. repository = "https://codeberg.org/darkrenaissance/darkfi"
  7. license = "AGPL-3.0-only"
  8. edition = "2021"
  9. [workspace]
  10. [dependencies]
  11. # Darkfi
  12. darkfi = {path = "../../../../", features = ["async-daemonize", "async-sdk", "rpc", "sled-overlay"]}
  13. darkfi-sdk = {path = "../../../../src/sdk"}
  14. darkfi-serial = "0.4.2"
  15. # Misc
  16. bs58 = "0.5.1"
  17. log = "0.4.27"
  18. sled-overlay = "0.1.8"
  19. # JSON-RPC
  20. async-trait = "0.1.88"
  21. tinyjson = "2.5.1"
  22. url = "2.5.4"
  23. # Daemon
  24. async-std = {version = "1.13.1", features = ["attributes"]}
  25. easy-parallel = "3.3.1"
  26. signal-hook-async-std = "0.3.0"
  27. signal-hook = "0.3.18"
  28. simplelog = "0.12.2"
  29. smol = "2.0.2"
  30. # Argument parsing
  31. serde = {version = "1.0.219", features = ["derive"]}
  32. structopt = "0.3.26"
  33. structopt-toml = "0.5.1"