Skip to content

Commit

Permalink
Merge pull request #154 from jontze/release/v0.5.3
Browse files Browse the repository at this point in the history
Release v0.5.3
  • Loading branch information
jontze authored Apr 24, 2024
2 parents f862800 + b272c2c commit 24540bc
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 14 deletions.
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "daily"
commit-message:
prefix: "fix(deps)"
prefix-development: "chore(dev-deps)"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,34 +10,34 @@ members = [
resolver = "2"

[workspace.dependencies]
env_logger = "0.11.0"
log = "0.4.19"
thiserror = "1.0.40"
serde_json = "1.0.99"
env_logger = "0.11.3"
log = "0.4.21"
thiserror = "1.0.59"
serde_json = "1.0.116"
derive_builder = "0.20.0"

[workspace.dependencies.serenity]
version = "0.12.0"
version = "0.12.1"
default-features = false
features = ["client", "gateway", "rustls_backend", "model", "voice", "cache"]

[workspace.dependencies.songbird]
version = "0.4.0"
version = "0.4.1"
features = ["builtin-queue"]

[workspace.dependencies.tokio]
version = "1.29.0"
version = "1.37.0"
features = ["macros", "rt-multi-thread"]

[workspace.dependencies.serde]
version = "1.0.164"
version = "1.0.198"
features = ["derive"]

[workspace.dependencies.reqwest]
version = "0.11.18"
version = "0.11.27"
default-features = false
features = ["rustls-tls", "json"]

[workspace.dependencies.symphonia]
version = "0.5"
version = "0.5.4"
features = ["all-formats"]
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM lukemathwalker/cargo-chef:latest-rust-1.75-slim-bullseye as build_base
FROM lukemathwalker/cargo-chef:latest-rust-1.77-slim-bullseye as build_base

FROM build_base as planner
WORKDIR /cadency
Expand Down
6 changes: 3 additions & 3 deletions cadency_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ proc_macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
proc-macro2 = "1.0.63"
quote = "1.0.28"
syn = "2.0.22"
proc-macro2 = "1.0.81"
quote = "1.0.36"
syn = "2.0.60"

0 comments on commit 24540bc

Please sign in to comment.