From 41d8f8fa017b818c8600fc0c30fbc93c1dea3e39 Mon Sep 17 00:00:00 2001 From: Odonno Date: Fri, 12 Apr 2024 20:32:48 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade=20dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.lock | 15 +++++++++++---- Cargo.toml | 18 +++++++++--------- 2 files changed, 20 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9e8da95..2b824dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2776,12 +2776,13 @@ dependencies = [ [[package]] name = "rust-ini" -version = "0.20.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e0698206bcb8882bf2a9ecb4c1e7785db57ff052297085a6efd4fe42302068a" +checksum = "0d625ed57d8f49af6cfa514c42e1a71fadcff60eb0b1c517ff82fe41aa025b41" dependencies = [ "cfg-if", "ordered-multimap", + "trim-in-place", ] [[package]] @@ -3222,9 +3223,9 @@ dependencies = [ [[package]] name = "sqlparser" -version = "0.43.1" +version = "0.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f95c4bae5aba7cd30bd506f7140026ade63cff5afd778af8854026f9606bf5d4" +checksum = "f7bbffee862a796d67959a89859d6b1046bb5016d63e23835ad0da182777bbe0" dependencies = [ "log", ] @@ -3897,6 +3898,12 @@ dependencies = [ "web-sys", ] +[[package]] +name = "trim-in-place" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "343e926fc669bc8cde4fa3129ab681c63671bae288b1f1081ceee6d9d37904fc" + [[package]] name = "try-lock" version = "0.2.5" diff --git a/Cargo.toml b/Cargo.toml index f052b24..40c2f0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,24 +14,24 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -chrono = "0.4.34" +chrono = "0.4.37" chrono-human-duration = "0.1.1" -clap = { version = "4.5.1", features = ["derive"] } +clap = { version = "4.5.4", features = ["derive"] } cli-table = "0.4.7" -color-eyre = "0.6.2" +color-eyre = "0.6.3" convert_case = "0.6.0" diffy = "0.3.0" fs_extra = "1.3.0" include_dir = "0.7.3" itertools = "0.12.1" names = { version = "0.14.0", default-features = false } -regex = "1.10.3" -rust-ini = "0.20.0" +regex = "1.10.4" +rust-ini = "0.21.0" serde = { version = "1.0.197", features = ["derive"] } -serde_json = "1.0.114" -sqlparser = "0.43.1" +serde_json = "1.0.115" +sqlparser = "0.45.0" surrealdb = { version = "1.4.0", features = ["protocol-http", "sql2"] } -tokio = { version = "1.36.0", features = ["macros"] } +tokio = { version = "1.37.0", features = ["macros"] } [dev-dependencies] assert_cmd = "2.0.14" @@ -40,7 +40,7 @@ dir-diff = "0.3.3" predicates = "3.1.0" pretty_assertions = "1.4.0" serial_test = "3.0.0" -tokio-test = "0.4.3" +tokio-test = "0.4.4" [package.metadata.docs.rs] rustc-args = ["--cfg", "surrealdb_unstable"]