Nova/exes/webhook/Cargo.toml
2023-01-02 18:59:03 +04:00

24 lines
537 B
TOML

[package]
name = "webhook"
version = "0.1.0"
edition = "2018"
[dependencies]
hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1", features = ["full"] }
shared = { path = "../../libs/shared" }
proto = { path = "../../libs/proto" }
leash = { path = "../../libs/leash" }
serde = { version = "1.0.8", features = ["derive"] }
hex = "0.4.3"
serde_json = { version = "1.0" }
lazy_static = "1.4.0"
ed25519-dalek = "1"
twilight-model = { version = "0.14" }
anyhow = "1.0.68"
[[bin]]
name = "webhook"
path = "src/main.rs"