123456789101112131415161718192021222324252627 |
- [package]
- name = "responder"
- version = "0.1.0"
- edition = "2021"
- publish = false
- [features]
- default_artifact_build = []
- [dependencies]
- aya = { git = "https://github.com/aya-rs/aya" }
- aya-log = { git = "https://github.com/aya-rs/aya" }
- responder-common = { path = "../responder-common", features=["user"] }
- anyhow = "1.0.42"
- clap = { version = "3.1", features = ["derive"] }
- env_logger = "0.9"
- log = "0.4"
- tokio = { version = "1.25", features = ["macros", "rt", "rt-multi-thread", "net", "signal"] }
- [[bin]]
- name = "responder"
- path = "src/main.rs"
|