diff --git a/Cargo.lock b/Cargo.lock index 278a56cd3f9c..386b9b136f39 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6323,14 +6323,14 @@ checksum = "9252111cf132ba0929b6f8e030cac2a24b507f3a4d6db6fb2896f27b354c714b" [[package]] name = "mysql-common-derive" -version = "0.30.2" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56b0d8a0db9bf6d2213e11f2c701cb91387b0614361625ab7b9743b41aa4938f" +checksum = "c60492b5eb751e55b42d716b6b26dceb66767996cd7a5560a842fbf613ca2e92" dependencies = [ "darling 0.20.3", "heck 0.4.1", "num-bigint", - "proc-macro-crate 1.3.1", + "proc-macro-crate 3.1.0", "proc-macro-error 1.0.4", "proc-macro2", "quote", @@ -6341,9 +6341,9 @@ dependencies = [ [[package]] name = "mysql_async" -version = "0.33.0" +version = "0.34.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6750b17ce50f8f112ef1a8394121090d47c596b56a6a17569ca680a9626e2ef2" +checksum = "fbfe87d7e35cb72363326216cc1712b865d8d4f70abf3b2d2e6b251fb6b2f427" dependencies = [ "bytes", "crossbeam", @@ -6375,9 +6375,9 @@ dependencies = [ [[package]] name = "mysql_common" -version = "0.31.0" +version = "0.32.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06f19e4cfa0ab5a76b627cec2d81331c49b034988eaf302c3bafeada684eadef" +checksum = "8a60cb978c0a1d654edcc1460f8d6092dacf21346ed6017d81fb76a23ef5a8de" dependencies = [ "base64 0.21.7", "bigdecimal 0.4.2", @@ -6410,7 +6410,7 @@ dependencies = [ "thiserror", "time", "uuid", - "zstd 0.12.4", + "zstd 0.13.0", ] [[package]] @@ -7827,6 +7827,15 @@ dependencies = [ "toml_edit 0.20.2", ] +[[package]] +name = "proc-macro-crate" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" +dependencies = [ + "toml_edit 0.21.1", +] + [[package]] name = "proc-macro-error" version = "0.4.12" @@ -8204,7 +8213,7 @@ dependencies = [ "indoc", "libc", "memoffset", - "parking_lot 0.11.2", + "parking_lot 0.12.1", "portable-atomic", "pyo3-build-config", "pyo3-ffi", @@ -12634,9 +12643,9 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.6.3" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" +checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" dependencies = [ "serde", ] @@ -12667,6 +12676,17 @@ dependencies = [ "winnow", ] +[[package]] +name = "toml_edit" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" +dependencies = [ + "indexmap 2.0.0", + "toml_datetime", + "winnow", +] + [[package]] name = "tonic" version = "0.9.2" @@ -14333,7 +14353,6 @@ dependencies = [ "tokio-stream", "tokio-util", "toml_datetime", - "toml_edit 0.19.15", "tonic 0.10.2", "tower", "tracing", diff --git a/src/connector/Cargo.toml b/src/connector/Cargo.toml index 2b0d04bcb90a..7bb308169d37 100644 --- a/src/connector/Cargo.toml +++ b/src/connector/Cargo.toml @@ -74,10 +74,10 @@ jni = { version = "0.21.1", features = ["invocation"] } jst = { package = 'jsonschema-transpiler', git = "https://github.com/mozilla/jsonschema-transpiler", rev = "c1a89d720d118843d8bcca51084deb0ed223e4b4" } maplit = "1.0.2" moka = { version = "0.12", features = ["future"] } -mysql_async = { version = "0.33", default-features = false, features = [ +mysql_async = { version = "0.34", default-features = false, features = [ "default", ] } -mysql_common = { version = "0.31", default-features = false, features = [ +mysql_common = { version = "0.32", default-features = false, features = [ "chrono", ] } nexmark = { version = "0.2", features = ["serde"] } diff --git a/src/workspace-hack/Cargo.toml b/src/workspace-hack/Cargo.toml index 3f9edb99410f..1ba32e7c0198 100644 --- a/src/workspace-hack/Cargo.toml +++ b/src/workspace-hack/Cargo.toml @@ -142,7 +142,6 @@ tokio-postgres = { git = "https://github.com/madsim-rs/rust-postgres.git", rev = tokio-stream = { git = "https://github.com/madsim-rs/tokio.git", rev = "fe39bb8e", features = ["fs", "net"] } tokio-util = { version = "0.7", features = ["codec", "io"] } toml_datetime = { version = "0.6", default-features = false, features = ["serde"] } -toml_edit = { version = "0.19", features = ["serde"] } tonic = { version = "0.10", features = ["gzip", "tls-webpki-roots"] } tower = { version = "0.4", features = ["balance", "buffer", "filter", "limit", "load-shed", "timeout", "util"] } tracing = { version = "0.1", features = ["log"] } @@ -209,7 +208,6 @@ target-lexicon = { version = "0.12", features = ["std"] } time = { version = "0.3", features = ["local-offset", "macros", "serde-well-known"] } time-macros = { version = "0.2", default-features = false, features = ["formatting", "parsing", "serde"] } toml_datetime = { version = "0.6", default-features = false, features = ["serde"] } -toml_edit = { version = "0.19", features = ["serde"] } zeroize = { version = "1" } ### END HAKARI SECTION