Files
signal-gateway/signal-gateway-bin/Cargo.toml
T

52 lines
1.4 KiB
TOML

[package]
name = "signal-gateway-bin"
version = "0.1.0"
description = "Configurable binary for signal-gateway monitoring service"
keywords = ["signal", "monitoring", "alerting", "prometheus"]
categories = ["command-line-utilities"]
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
include.workspace = true
[lints]
workspace = true
[[bin]]
name = "signal-gateway"
path = "src/main.rs"
[features]
default = ["signal-gateway/default"]
plot = ["signal-gateway/plot"]
rustls-tls = ["signal-gateway/rustls-tls"]
[dependencies]
signal-gateway = { workspace = true }
signal-gateway-assistant-claude = { workspace = true }
signal-gateway-code-tool = { workspace = true }
signal-gateway-log-ingest = { workspace = true }
async-trait = { workspace = true }
conf = { workspace = true }
conf-extra = { workspace = true }
dotenvy = { workspace = true }
http = { workspace = true }
http-body = { workspace = true }
http-body-util = { workspace = true }
hyper = { workspace = true }
hyper-util = { workspace = true }
metrics-exporter-prometheus = { workspace = true }
reqwest = { workspace = true }
url = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
toml = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "signal"] }
tokio-util = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
[dev-dependencies]