diff --git a/CHANGELOG.md b/CHANGELOG.md index 83be199b..4531eb71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ All notable changes to this project will be documented in this file. - Bump `stackable-operator` from `0.64.0` to `0.70.0` ([#641]). - Bump `product-config` from `0.6.0` to `0.7.0` ([#641]). +- Bump other dependencies ([#642]). - Make it easy to test custom NiFi images ([#616]). ### Fixed @@ -29,6 +30,7 @@ All notable changes to this project will be documented in this file. [#627]: https://github.com/stackabletech/nifi-operator/pull/627 [#628]: https://github.com/stackabletech/nifi-operator/pull/628 [#641]: https://github.com/stackabletech/nifi-operator/pull/641 +[#642]: https://github.com/stackabletech/nifi-operator/pull/642 ## [24.3.0] - 2024-03-20 diff --git a/Cargo.lock b/Cargo.lock index 67b910c7..fd87e4d7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -270,9 +270,9 @@ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" [[package]] name = "cc" -version = "1.1.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eaff6f8ce506b9773fa786672d63fc7a191ffea1be33f72bbd4aeacefca9ffc8" +checksum = "907d8581360765417f8f2e0e7d602733bbed60156b4465b7617243689ef9b83d" dependencies = [ "jobserver", "libc", @@ -2164,18 +2164,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.61" +version = "1.0.62" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" +checksum = "f2675633b1499176c2dff06b0856a27976a8f9d436737b4cf4f312d4d91d8bbb" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.61" +version = "1.0.62" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" +checksum = "d20468752b09f49e909e55a5d338caa8bedf615594e9d80bc4c565d30faf798c" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.nix b/Cargo.nix index f1080868..beacce4f 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -774,9 +774,9 @@ rec { }; "cc" = rec { crateName = "cc"; - version = "1.1.0"; + version = "1.1.1"; edition = "2018"; - sha256 = "1j7zm7ycxsjaplmzfcxyl7z1y6bsziijsrw6lwzpgf86wn66zzza"; + sha256 = "0gdqz6g6hhvjc6vnai3b2mhfvfrk4xh7s3ifixzl2r876s0qazch"; authors = [ "Alex Crichton " ]; @@ -6771,9 +6771,9 @@ rec { }; "thiserror" = rec { crateName = "thiserror"; - version = "1.0.61"; + version = "1.0.62"; edition = "2021"; - sha256 = "028prh962l16cmjivwb1g9xalbpqip0305zhq006mg74dc6whin5"; + sha256 = "1fwb3pcx84pkyi67nwrnskwshxkrl9b0hszhvz17d4a9n4rmcrzj"; authors = [ "David Tolnay " ]; @@ -6787,9 +6787,9 @@ rec { }; "thiserror-impl" = rec { crateName = "thiserror-impl"; - version = "1.0.61"; + version = "1.0.62"; edition = "2021"; - sha256 = "0cvm37hp0kbcyk1xac1z0chpbd9pbn2g456iyid6sah0a113ihs6"; + sha256 = "133rmw7x6rf5qh5xisclamhxzgm8r8wd79amks89xx095dsnh16j"; procMacro = true; libName = "thiserror_impl"; authors = [ diff --git a/Cargo.toml b/Cargo.toml index 06569ccf..e7cca065 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ serde_yaml = "0.9" snafu = "0.8" stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.70.0" } strum = { version = "0.26", features = ["derive"] } -tokio = { version = "1.37", features = ["full"] } +tokio = { version = "1.38", features = ["full"] } tracing = "0.1" xml-rs = "0.8"