Skip to content

Commit

Permalink
update cargo deps
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthieuCoder committed Jul 6, 2024
1 parent ea6bd80 commit 65a07b5
Show file tree
Hide file tree
Showing 11 changed files with 677 additions and 530 deletions.
1,087 changes: 617 additions & 470 deletions Cargo.lock

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ leash = { path = "libs/leash" }
tokio = { version = "1", features = ["rt-multi-thread", "signal"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
hyper = "0.14.27"
hyper = "1.4.0"

anyhow = "1"

tracing = "0.1"
tracing-futures = "0.2"
tracing-opentelemetry = "0.19"
opentelemetry = { version = "0.19", features = ["rt-tokio"] }
opentelemetry-http = "0.8"
tracing-opentelemetry = "0.24"
opentelemetry = { version = "0.23" }
opentelemetry-http = "0.12"

criterion = { version = "0.5", features = ["async_tokio"] }
tokio-test = "0.4.2"
tracing-test = "0.2.4"
tracing-subscriber = "0.3.17"
tokio-test = "0.4.4"
tracing-test = "0.2.5"
tracing-subscriber = "0.3.18"
test-log = { version = "*", features = ["trace"] }
env_logger = "0.10.0"
env_logger = "0.11.3"
12 changes: 6 additions & 6 deletions exes/cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ shared = { path = "../../libs/shared" }
proto = { path = "../../libs/proto" }

tokio = { version = "1", features = ["rt"] }
tokio-stream = "0.1.14"
tokio-stream = "0.1.15"

serde = { version = "1.0.166", features = ["derive"] }
serde = { version = "1.0.204", features = ["derive"] }
serde_json = { version = "1.0" }

async-nats = "0.29.0"
twilight-model = "0.15.2"
anyhow = "1.0.71"
async-nats = "0.35.1"
twilight-model = "0.15.4"
anyhow = "1.0.86"

tracing = "0.1.37"
tracing = "0.1.40"
10 changes: 5 additions & 5 deletions exes/gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ anyhow = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }

tokio-stream = "0.1.14"
twilight-gateway = { default-features = false, features = ["rustls-webpki-roots"], version = "0.15.2" }
twilight-model = "0.15.2"
bytes = "1.4.0"
async-nats = "0.29.0"
tokio-stream = "0.1.15"
twilight-gateway = { default-features = false, features = ["rustls-webpki-roots"], version = "0.15.4" }
twilight-model = "0.15.4"
bytes = "1.6.0"
async-nats = "0.35.1"
8 changes: 4 additions & 4 deletions exes/ratelimit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ serde = { workspace = true }
serde_json = { workspace = true }
hyper = { workspace = true }

twilight-http-ratelimiting = "0.15.1"
tonic = "0.9.2"
tokio-stream = "0.1.14"
redis = { version = "0.23.0", features = ["cluster", "connection-manager", "tokio-comp"] }
twilight-http-ratelimiting = "0.15.3"
tonic = "0.11.0"
tokio-stream = "0.1.15"
redis = { version = "0.25.4", features = ["cluster", "connection-manager", "tokio-comp"] }

[dev-dependencies]
criterion = { workspace = true }
Expand Down
18 changes: 9 additions & 9 deletions exes/rest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ serde = { workspace = true }
serde_json = { workspace = true }
hyper = { workspace = true }

futures-util = "0.3.28"
hyper-rustls = "0.24.1"
lazy_static = "1.4.0"
xxhash-rust = { version = "0.8.6", features = ["xxh32"] }
twilight-http-ratelimiting = "0.15.1"
futures-util = "0.3.30"
hyper-rustls = "0.27.2"
lazy_static = "1.5.0"
xxhash-rust = { version = "0.8.11", features = ["xxh32"] }
twilight-http-ratelimiting = "0.15.3"

hashring = "0.3.0"
tonic = "0.9.2"
tokio-stream = "0.1.14"
dns-lookup = "2.0.2"
hashring = "0.3.5"
tonic = "0.11.0"
tokio-stream = "0.1.15"
dns-lookup = "2.0.4"
6 changes: 3 additions & 3 deletions exes/webhook/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ hyper = { workspace = true }
anyhow = { workspace = true }

hex = "0.4.3"
ed25519-dalek = "1"
twilight-model = "0.15.2"
ed25519-dalek = "2"
twilight-model = "0.15.4"

async-nats = "0.29.0"
async-nats = "0.35.1"
26 changes: 13 additions & 13 deletions libs/all_in_one/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
libc = "0.2.147"
libc = "0.2.155"
leash = { path = "../../libs/leash" }
shared = { path = "../../libs/shared" }

Expand All @@ -15,24 +15,24 @@ gateway = { path = "../../exes/gateway" }
ratelimit = { path = "../../exes/ratelimit" }
rest = { path = "../../exes/rest" }
webhook = { path = "../../exes/webhook" }
ctrlc = "3.4.0"
ctrlc = "3.4.4"

tokio = { version = "1.29.1", features = ["rt"] }
serde = "1.0.166"
serde_json = "1.0.100"
anyhow = { version = "1.0.71", features = ["backtrace"] }
tokio = { version = "1.38.0", features = ["rt"] }
serde = "1.0.204"
serde_json = "1.0.120"
anyhow = { version = "1.0.86", features = ["backtrace"] }

tracing = "0.1.37"
tracing = "0.1.40"

config = "0.13.3"
config = "0.14.0"

tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing-opentelemetry = "0.19.0"
opentelemetry = { version ="0.19.0", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.12.0" }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing-opentelemetry = "0.24.0"
opentelemetry = { version ="0.23.0" }
opentelemetry-otlp = { version = "0.16.0" }

[lib]
crate-type = ["staticlib", "rlib"]

[build-dependencies]
cbindgen = "0.24.5"
cbindgen = "0.26.0"
6 changes: 3 additions & 3 deletions libs/leash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ opentelemetry = { workspace = true }
tracing-opentelemetry = { workspace = true }
tracing = { workspace = true }

tracing-log = { version = "0.1.3", features = ["env_logger"] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
opentelemetry-otlp = { version = "0.12.0", features = ["metrics"] }
tracing-log = { version = "0.2.0" }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
opentelemetry-otlp = { version = "0.16.0", features = ["metrics"] }
6 changes: 3 additions & 3 deletions libs/proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ version = "0.1.0"
edition = "2021"

[dependencies]
tonic = "0.9.2"
prost = "0.11.9"
tonic = "0.11.0"
prost = "0.12.6"

[build-dependencies]
tonic-build = "0.9.2"
tonic-build = "0.11.0"
glob = "0.3.1"
12 changes: 6 additions & 6 deletions libs/shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ opentelemetry = { workspace = true }
tracing = { workspace = true }
tokio = { workspace = true }

config = { version = "0.13", default-features = false, features = ["json", "yaml-rust", "ini"] }
redis = { version = "0.23.0", features = ["cluster", "connection-manager", "tokio-comp"] }
config = { version = "0.14", default-features = false, features = ["json", "yaml-rust", "ini"] }
redis = { version = "0.25.4", features = ["cluster", "connection-manager", "tokio-comp"] }

async-nats = "0.29.0"
twilight-model = "0.15.2"
anyhow = "1.0.71"
opentelemetry-otlp = "0.12.0"
async-nats = "0.35.1"
twilight-model = "0.15.4"
anyhow = "1.0.86"
opentelemetry-otlp = "0.16.0"

0 comments on commit 65a07b5

Please sign in to comment.