diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7d2e5d9..48c4738 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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: diff --git a/Cargo.toml b/Cargo.toml index ce2a835..d40f059 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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.58" +serde_json = "1.0.115" 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.197" 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"] diff --git a/cadency_codegen/Cargo.toml b/cadency_codegen/Cargo.toml index 4ae8fa8..b16182d 100644 --- a/cadency_codegen/Cargo.toml +++ b/cadency_codegen/Cargo.toml @@ -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.79" +quote = "1.0.35" +syn = "2.0.58"