Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade dependencies #21

Merged
merged 9 commits into from
Dec 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,606 changes: 1,080 additions & 526 deletions Cargo.lock

Large diffs are not rendered by default.

15 changes: 8 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ path = "src/main.rs"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }
warp = "0.3"
reqwest = { version = "0.11", features = ["rustls-tls", "json"], default-features = false }
lru = "0.9"
reqwest = { version = "0.12", features = ["rustls-tls", "json"], default-features = false }
lru = "0.12"
futures = "0.3"

deadpool-postgres = "0.10"
deadpool-postgres = "0.14"
tokio-postgres = { version = "0.7", features = ["with-uuid-1"] }
chrono = { version = "0.4", features = ["serde"] }
# Pinned to 0.8 because of clickhouse-rs
chrono-tz = "0.8"

byteorder = "1"
Expand All @@ -33,15 +34,15 @@ uuid = { version = "1", features = ["serde"] }
regex = "1.7"
lazy_static = "1.4" # todo: replace with once_cell/the stdlib implementation

serenity = { version = "0.11", default-features = false, features = ["builder", "cache", "client", "gateway", "model", "http", "rustls_backend"] }
serenity = { version = "0.12", default-features = false, features = ["builder", "cache", "client", "gateway", "model", "http", "rustls_backend"] }
async-trait = "0.1"

xtra = "0.5.2"
xtra = { version = "0.6", features = ["macros", "sink", "tokio"] }

thiserror = "1"
thiserror = "2"

log = "0.4" # todo: replace with tracing
env_logger = "0.10"
env_logger = "0.11"

walkdir = "2"
nucleoid-leaderboards = { git = "https://github.com/NucleoidMC/nucleoid-leaderboards.git" }
Expand Down
35 changes: 15 additions & 20 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading