diff --git a/.changes/log-kv-stable-feature.md b/.changes/log-kv-stable-feature.md new file mode 100644 index 000000000..f53c75843 --- /dev/null +++ b/.changes/log-kv-stable-feature.md @@ -0,0 +1,6 @@ +--- +"log": patch +"log-js": patch +--- + +Migrated from the `log` crate's `kv_unstable` feature flag to the `kv` feature flag stabilized in `0.4.21`. \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index c0c0d0745..9cc719bde 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3463,9 +3463,6 @@ name = "log" version = "0.4.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" -dependencies = [ - "value-bag", -] [[package]] name = "lru-slab" @@ -7744,12 +7741,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "value-bag" -version = "1.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5" - [[package]] name = "vcpkg" version = "0.2.15" diff --git a/Cargo.toml b/Cargo.toml index 87fc448c1..d297e4f71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ resolver = "2" [workspace.dependencies] serde = { version = "1", features = ["derive"] } tracing = "0.1" -log = "0.4" +log = "0.4.21" tauri = { version = "2.10", default-features = false } tauri-build = "2.5" tauri-plugin = "2.5" diff --git a/plugins/log/Cargo.toml b/plugins/log/Cargo.toml index c5c82fd27..7f0fd02b6 100644 --- a/plugins/log/Cargo.toml +++ b/plugins/log/Cargo.toml @@ -25,7 +25,7 @@ serde_json = { workspace = true } tauri = { workspace = true } thiserror = { workspace = true } serde_repr = "0.1" -log = { workspace = true, features = ["kv_unstable"] } +log = { workspace = true, features = ["kv"] } time = { version = "0.3", features = [ "formatting", "local-offset",