Cargo.toml 738 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "responder"
  3. version = "0.1.0"
  4. edition = "2021"
  5. publish = false
  6. [features]
  7. default_artifact_build = []
  8. [dependencies]
  9. # aya = { version = ">=0.11", features=["async_tokio"] }
  10. # aya-log = "0.1"
  11. # aya = { path = "/home/niels/files/temp/aya/aya" }
  12. # aya-log = { path = "/home/niels/files/temp/aya/aya-log" }
  13. aya = { git = "https://github.com/aya-rs/aya" }
  14. aya-log = { git = "https://github.com/aya-rs/aya" }
  15. responder-common = { path = "../responder-common", features=["user"] }
  16. anyhow = "1.0.42"
  17. clap = { version = "3.1", features = ["derive"] }
  18. env_logger = "0.9"
  19. log = "0.4"
  20. tokio = { version = "1.25", features = ["macros", "rt", "rt-multi-thread", "net", "signal"] }
  21. [[bin]]
  22. name = "responder"
  23. path = "src/main.rs"