Cargo.toml 677 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "evgrd"
  3. description = "Event graph daemon"
  4. version = "0.5.0"
  5. edition = "2021"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. license = "AGPL-3.0-only"
  8. homepage = "https://dark.fi"
  9. repository = "https://codeberg.org/darkrenaissance/darkfi"
  10. [[bin]]
  11. name = "evgrd"
  12. path = "bin/evgrd.rs"
  13. [[bin]]
  14. name = "test"
  15. path = "bin/test.rs"
  16. [dependencies]
  17. darkfi = {path = "../../", features = ["event-graph"]}
  18. darkfi-serial = {path = "../../src/serial", features = ["async"]}
  19. # Event Graph DB
  20. sled-overlay = "0.1.3"
  21. # Crypto
  22. blake3 = "1.5.4"
  23. # Misc
  24. log = "0.4.22"
  25. url = "2.5.2"
  26. # Daemon
  27. smol = "2.0.1"
  28. #[lints]
  29. #workspace = true
  30. # Temp stuff
  31. [workspace]