blob: e4fc0acb59cce281d8fb8953e547872a8849addb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
[package]
name = "webhook"
version = "0.1.0"
edition = "2018"
[dependencies]
hyper = "0.14"
tokio = { version = "1", features = ["rt"] }
shared = { path = "../../libs/shared" }
proto = { path = "../../libs/proto" }
leash = { path = "../../libs/leash" }
tracing = "0.1.37"
serde = { version = "1.0.8", features = ["derive"] }
serde_json = { version = "1.0" }
hex = "0.4.3"
ed25519-dalek = "1"
twilight-model = { version = "0.14" }
anyhow = "1.0.68"
async-nats = "0.26.0"
[target.'cfg(not(target_os = "windows"))'.dependencies]
tikv-jemallocator = "0.5"
|