You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: Replace lazy_static with std::sync::LazyLock (#827)
* refactor: Replace lazy_static with std::sync::LazyLock
std::cell::LazyCell and std::sync::LazyLock were
stabilized in Rust 1.80.0. We can now use the
standard library types instead of the lazy_static
crate.
* fix: Fix new Clippy errors introduced in Rust 1.80.0
* chore: Bump Rust toolchain version in workflows
* chore: Bump cargo-udeps to 0.1.50 in build workflow
* chore: Update PR link in changelog
* chore: Mark change as breaking in changelog
* Apply suggestion
Co-authored-by: Nick <[email protected]>
* fix: Use correct link format in changelogs
---------
Co-authored-by: Nick <[email protected]>
Copy file name to clipboardExpand all lines: Cargo.toml
-1
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,6 @@ json-patch = "2.0.0"
32
32
k8s-openapi = { version = "0.22.0", default-features = false, features = ["schemars", "v1_30"] }
33
33
# We use rustls instead of openssl for easier portablitly, e.g. so that we can build stackablectl without the need to vendor (build from source) openssl
34
34
kube = { version = "0.92.1", default-features = false, features = ["client", "jsonpatch", "runtime", "derive", "rustls-tls"] }
35
-
lazy_static = "1.5.0"
36
35
opentelemetry = "0.23.0"
37
36
opentelemetry_sdk = { version = "0.23.0", features = ["rt-tokio"] }
/// Starting from Kubernetes v1.18, you can enable the Server Side Apply feature so that the control plane tracks managed fields for all newly created objects.
376
+
/// Starting from Kubernetes v1.18, you can enable the Server Side Apply feature so that the control plane tracks managed fields for all newly created objects.
0 commit comments