Skip to content

Commit 1e0a873

Browse files
authored
chore: bump Rust edition to 2024 and apply cargo fix + clippy updates (#737)
Run `cargo fix --edition` and resolve resulting warnings: - Fix Rust 2024 temporary drop order change by simplifying `_initial_reconcile_rx` handling
1 parent 667ce1c commit 1e0a873

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Cargo.nix

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ resolver = "2"
66
version = "0.0.0-dev"
77
authors = ["Stackable GmbH <info@stackable.tech>"]
88
license = "OSL-3.0"
9-
edition = "2021"
9+
edition = "2024"
1010
repository = "https://github.com/stackabletech/superset-operator"
1111

1212
[workspace.dependencies]

rust/operator-binary/src/webhooks/conversion.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ pub async fn create_webhook_server(
4646
field_manager: FIELD_MANAGER.to_owned(),
4747
};
4848

49-
let (conversion_webhook, _initial_reconcile_rx) =
49+
let (conversion_webhook, _) =
5050
ConversionWebhook::new(crds_and_handlers, client, conversion_webhook_options);
5151

5252
let webhook_server_options = WebhookServerOptions {

0 commit comments

Comments
 (0)