summaryrefslogtreecommitdiff
path: root/exes/gateway
diff options
context:
space:
mode:
authorMatthieuCoder <matthieu@matthieu-dev.xyz>2023-01-16 13:14:40 +0400
committerMatthieuCoder <matthieu@matthieu-dev.xyz>2023-01-16 13:14:40 +0400
commite72357c34bf548ce15e7cd2424a339994c1792e1 (patch)
treec5b8767ed05aa10b30dbed054e87e7b0aabff7c1 /exes/gateway
parent5d925b8045306369ae52966f0a27d65a72cd878d (diff)
clean dependencies
Diffstat (limited to 'exes/gateway')
-rw-r--r--exes/gateway/Cargo.toml32
1 files changed, 13 insertions, 19 deletions
diff --git a/exes/gateway/Cargo.toml b/exes/gateway/Cargo.toml
index e7a0813..375a020 100644
--- a/exes/gateway/Cargo.toml
+++ b/exes/gateway/Cargo.toml
@@ -4,30 +4,24 @@ version = "0.1.0"
edition = "2018"
[dependencies]
-shared = { path = "../../libs/shared" }
-proto = { path = "../../libs/proto" }
-leash = { path = "../../libs/leash" }
+shared = { workspace = true }
+proto = { workspace = true }
+leash = { workspace = true }
+tracing-opentelemetry = { workspace = true }
+opentelemetry = { workspace = true }
+opentelemetry-http = { workspace = true }
+tracing = { workspace = true }
+tracing-futures = { workspace = true }
+tokio = { workspace = true }
+anyhow = { workspace = true }
+serde = { workspace = true }
+serde_json = { workspace = true }
-tokio = { version = "1", features = ["rt", "signal"] }
tokio-stream = "0.1.11"
-
twilight-gateway = { version = "0.14" }
twilight-model = "0.14"
-
bytes = "1.3.0"
-anyhow = "1.0.68"
-
-serde = { version = "1.0.8", features = ["derive"] }
-serde_json = { version = "1.0" }
-
-tracing = "0.1.37"
-tracing-futures = "0.2.5"
-
async-nats = "0.26.0"
-tracing-opentelemetry = "0.18.0"
-opentelemetry = "0.18.0"
-opentelemetry-http = "0.7.0"
-
[target.'cfg(not(target_os = "windows"))'.dependencies]
-tikv-jemallocator = "0.5" \ No newline at end of file
+tikv-jemallocator = { workspace = true } \ No newline at end of file