Cargo.toml 903 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "darkfid"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. description = "DarkFi node daemon"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. repository = "https://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies]
  11. async-std = "1.12.0"
  12. async-trait = "0.1.64"
  13. blake3 = "1.3.3"
  14. bs58 = "0.4.0"
  15. ctrlc = { version = "3.2.4", features = ["termination"] }
  16. darkfi = {path = "../../", features = ["blockchain", "wallet", "rpc", "net"]}
  17. darkfi-sdk = {path = "../../src/sdk"}
  18. darkfi-serial = {path = "../../src/serial"}
  19. easy-parallel = "3.2.0"
  20. log = "0.4.17"
  21. serde_json = "1.0.91"
  22. simplelog = "0.12.0"
  23. sled = "0.34.7"
  24. smol = "1.3.0"
  25. sqlx = {version = "0.6.2", features = ["runtime-async-std-native-tls", "sqlite"]}
  26. url = "2.3.1"
  27. # Argument parsing
  28. serde = {version = "1.0.152", features = ["derive"]}
  29. structopt = "0.3.26"
  30. structopt-toml = "0.5.1"