blob: 7b4a185ad066eabc54828da6882db97be1cc7777 (
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
|
[package]
name = "webhook"
version = "0.1.0"
edition = "2018"
[dependencies]
tokio = { workspace = true }
shared = { workspace = true }
proto = { workspace = true }
leash = { workspace = true }
tracing = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
hyper = { workspace = true }
anyhow = { workspace = true }
hex = "0.4.3"
ed25519-dalek = "1"
twilight-model = { version = "0.14" }
async-nats = "0.26.0"
[target.'cfg(not(target_os = "windows"))'.dependencies]
tikv-jemallocator = "0.5"
|