From 8db736a1739bebe9b443e6134db6360000339cdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20Dub=C3=A9?= Date: Tue, 9 Jul 2024 13:55:12 +0000 Subject: [PATCH] update dependencies --- examples/Cargo.toml | 2 +- refinery_cli/Cargo.toml | 4 ++-- refinery_core/Cargo.toml | 2 +- refinery_macros/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 4914afeb..2a9d6037 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -13,7 +13,7 @@ enums = ["refinery/enums"] [dependencies] refinery = { path = "../refinery", features = ["rusqlite"] } -rusqlite = "0.29" +rusqlite = "0.31" barrel = { version = "0.7", features = ["sqlite3"] } log = "0.4" env_logger = "0.11" \ No newline at end of file diff --git a/refinery_cli/Cargo.toml b/refinery_cli/Cargo.toml index ac79a14e..e6bca7d8 100644 --- a/refinery_cli/Cargo.toml +++ b/refinery_cli/Cargo.toml @@ -25,9 +25,9 @@ mssql = ["refinery-core/tiberius-config", "tokio"] [dependencies] refinery-core = { version = "0.8.14", path = "../refinery_core", default-features = false, features = ["toml"] } clap = { version = "4", features = ["derive"] } -human-panic = "1.1.3" +human-panic = "2" toml = "0.8" -env_logger = "0.10" +env_logger = "0.11" log = "0.4" anyhow = "1" regex = "1" diff --git a/refinery_core/Cargo.toml b/refinery_core/Cargo.toml index c8cb46f0..05f2045e 100644 --- a/refinery_core/Cargo.toml +++ b/refinery_core/Cargo.toml @@ -32,7 +32,7 @@ walkdir = "2.3.1" rusqlite = { version = ">= 0.23, <= 0.31", optional = true } postgres = { version = ">=0.17, <= 0.19", optional = true } tokio-postgres = { version = ">= 0.5, <= 0.7", optional = true } -mysql = { version = ">= 21.0.0, <= 24", optional = true, default-features = false, features = ["minimal"] } +mysql = { version = ">= 21.0.0, <= 25", optional = true, default-features = false, features = ["minimal"] } mysql_async = { version = ">= 0.28, <= 0.34", optional = true, default-features = false, features = ["minimal"] } tiberius = { version = ">= 0.7, <= 0.12", optional = true, default-features = false } tokio = { version = "1.0", optional = true } diff --git a/refinery_macros/Cargo.toml b/refinery_macros/Cargo.toml index 249ca6dc..3907f378 100644 --- a/refinery_macros/Cargo.toml +++ b/refinery_macros/Cargo.toml @@ -20,7 +20,7 @@ quote = "1" syn = "2" proc-macro2 = "1" regex = "1" -heck = "0.4" +heck = "0.5" [dev-dependencies] tempfile = "3"