Cargo.toml 781 B

123456789101112131415161718192021
  1. [package]
  2. name = "cjdnstool"
  3. version = "0.1.0"
  4. authors = [
  5. "Ilyas Gasanov <torso.nafi@gmail.com>",
  6. ]
  7. edition = "2021"
  8. description = "Command line tool for querying cjdns admin API."
  9. [dependencies]
  10. anyhow = "1"
  11. cjdns-admin = { git = "https://github.com/cjdelisle/cjdns-route-server", rev = "80f23210fdf7b6e1aeabdbd1eb96b48eef0c59a7", version = "0.1.0" }
  12. clap = { version = "4", features = ["derive"] }
  13. const_format = "0.2"
  14. data-encoding = "2"
  15. lazy_static = "1"
  16. serde = { version = "1", features = ["derive"] }
  17. serde_json = "1"
  18. sha2 = "0.10"
  19. sodiumoxide = { git = "https://github.com/cjdelisle/sodiumoxide", rev = "f79b6656b84f02b049470f9ad556a6a0c9980bd7", version = "0.2.6" }
  20. tokio = { version = "1.27", features = ["fs", "net", "macros", "time", "rt-multi-thread", "sync"] }