Skip to content

Commit 0299da0

Browse files
fix(deps): pin time to <0.3.52 (#15616)
* fix(deps): pin time to `<0.3.52` * Add change file and comments * change tag
1 parent 40ad9d9 commit 0299da0

3 files changed

Lines changed: 14 additions & 0 deletions

File tree

.changes/pin-time.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
tauri: patch:deps
3+
---
4+
5+
Pinning `time` to `<0.3.52` used by `cookie` to mitigate a compilation error, see
6+
7+
- https://github.com/tauri-apps/tauri/issues/15615
8+
- https://github.com/rwf2/cookie-rs/issues/255

Cargo.lock

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

crates/tauri/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,11 @@ specta = { version = "^2.0.0-rc.16", optional = true, default-features = false,
8585
# WARNING: cookie::Cookie is re-exported so bumping this is a breaking change, documented to be done as a minor bump
8686
cookie = "0.18"
8787

88+
# Pinning `time` used by `cookie` here to avoid a compilation error, see
89+
# - https://github.com/tauri-apps/tauri/issues/15615
90+
# - https://github.com/rwf2/cookie-rs/issues/255
91+
time = ">=0.3, <0.3.52"
92+
8893
# desktop
8994
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "windows", target_os = "macos"))'.dependencies]
9095
muda = { version = "0.19", default-features = false, features = [

0 commit comments

Comments
 (0)