[package] name = "responder" version = "0.1.0" edition = "2021" publish = false [features] default_artifact_build = [] [dependencies] # aya = { version = ">=0.11", features=["async_tokio"] } # aya-log = "0.1" # aya = { path = "/home/niels/files/temp/aya/aya" } # aya-log = { path = "/home/niels/files/temp/aya/aya-log" } 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"