diff options
| author | MatthieuCoder <matthieu@matthieu-dev.xyz> | 2023-01-16 13:14:40 +0400 | 
|---|---|---|
| committer | MatthieuCoder <matthieu@matthieu-dev.xyz> | 2023-01-16 13:14:40 +0400 | 
| commit | e72357c34bf548ce15e7cd2424a339994c1792e1 (patch) | |
| tree | c5b8767ed05aa10b30dbed054e87e7b0aabff7c1 /exes/webhook/Cargo.toml | |
| parent | 5d925b8045306369ae52966f0a27d65a72cd878d (diff) | |
clean dependencies
Diffstat (limited to 'exes/webhook/Cargo.toml')
| -rw-r--r-- | exes/webhook/Cargo.toml | 19 | 
1 files changed, 9 insertions, 10 deletions
diff --git a/exes/webhook/Cargo.toml b/exes/webhook/Cargo.toml index e4fc0ac..7b4a185 100644 --- a/exes/webhook/Cargo.toml +++ b/exes/webhook/Cargo.toml @@ -4,20 +4,19 @@ 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" } +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" } -anyhow = "1.0.68"  async-nats = "0.26.0"  | 
