diff --git a/java/pom.xml b/java/pom.xml index d0a4dbeaed..3f3da5cfe8 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -144,7 +144,7 @@ 0.12.6 0.1.32 - 33.3.1-jre + 33.4.0-jre 2.173.1 2.0.242 10.4.2 @@ -177,7 +177,7 @@ 2.5.0 5.11.4 - 1.11.3 + 1.11.4 5.14.2 1.20.4 2.35.2 diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 2d0c232e52..d6b1303c1f 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1191,9 +1191,9 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.134" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5a32d755fe20281b46118ee4b507233311fb7a48a0cfd42f554b93640521a2f" +checksum = "4d44ff199ff93242c3afe480ab588d544dd08d72e92885e152ffebc670f076ad" dependencies = [ "cc", "cxxbridge-cmd", @@ -1205,9 +1205,9 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.134" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11645536ada5d1c8804312cbffc9ab950f2216154de431de930da47ca6955199" +checksum = "66fd8f17ad454fc1e4f4ab83abffcc88a532e90350d3ffddcb73030220fcbd52" dependencies = [ "cc", "codespan-reporting", @@ -1219,9 +1219,9 @@ dependencies = [ [[package]] name = "cxxbridge-cmd" -version = "1.0.134" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebcc9c78e3c7289665aab921a2b394eaffe8bdb369aa18d81ffc0f534fd49385" +checksum = "4717c9c806a9e07fdcb34c84965a414ea40fafe57667187052cf1eb7f5e8a8a9" dependencies = [ "clap", "codespan-reporting", @@ -1232,15 +1232,15 @@ dependencies = [ [[package]] name = "cxxbridge-flags" -version = "1.0.134" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a22a87bd9e78d7204d793261470a4c9d585154fddd251828d8aefbb5f74c3bf" +checksum = "2f6515329bf3d98f4073101c7866ff2bec4e635a13acb82e3f3753fff0bf43cb" [[package]] name = "cxxbridge-macro" -version = "1.0.134" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dfdb020ff8787c5daf6e0dca743005cc8782868faeadfbabb8824ede5cb1c72" +checksum = "fb93e6a7ce8ec985c02bbb758237a31598b340acbbc3c19c5a4fa6adaaac92ab" dependencies = [ "proc-macro2", "quote", diff --git a/rust/compaction/Cargo.toml b/rust/compaction/Cargo.toml index 8c3086a711..f9dbab7379 100644 --- a/rust/compaction/Cargo.toml +++ b/rust/compaction/Cargo.toml @@ -32,7 +32,7 @@ crate-type = ["cdylib", "rlib"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -cxx = { version = "1.0.134" } # Exception handling for Rust +cxx = { version = "1.0.135" } # Exception handling for Rust libc = { version = "0.2.168" } # FFI type support log = { version = "0.4.22" } # Logging support arrow = { version = "53.3.0" } # Batch of reading from Parquet files diff --git a/rust/rust_sketch/Cargo.toml b/rust/rust_sketch/Cargo.toml index 5eab4a3598..e5549a4bdb 100644 --- a/rust/rust_sketch/Cargo.toml +++ b/rust/rust_sketch/Cargo.toml @@ -23,10 +23,10 @@ keywords = ["datasketches", "sketch", "quantile_sketch"] license = "Apache-2.0" [dependencies] -cxx = { version = "1.0.134" } +cxx = { version = "1.0.135" } [build-dependencies] -cxx-build = { version = "1.0.134" } +cxx-build = { version = "1.0.135" } git2 = { version = "0.19.0" } [target.'cfg(target_os = "macos")'.build-dependencies]