Skip to content

Commit

Permalink
fix(core): pin time to 0.3.15 (#6312)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Feb 19, 2023
1 parent 8661e4a commit 3d16461
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 23 deletions.
6 changes: 6 additions & 0 deletions .changes/pin-time.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"tauri": patch
"tauri-codegen": patch
---

Pin `time` to `0.3.15`.
2 changes: 1 addition & 1 deletion core/tauri-codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ json-patch = "0.3"

[target."cfg(target_os = \"macos\")".dependencies]
plist = "1"
time = { version = "0.3", features = [ "parsing", "formatting" ] }
time = { version = "=0.3.15", features = [ "parsing", "formatting" ] }

[features]
default = [ "compression" ]
Expand Down
2 changes: 1 addition & 1 deletion core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ shared_child = { version = "1.0", optional = true }
os_pipe = { version = "1.0", optional = true }
raw-window-handle = "0.5"
minisign-verify = { version = "0.2", optional = true }
time = { version = "0.3", features = [ "parsing", "formatting" ], optional = true }
time = { version = "=0.3.15", features = [ "parsing", "formatting" ], optional = true }
os_info = { version = "=3.5.0", optional = true }
regex = { version = "1.6.0", optional = true }
glob = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion core/tests/app-updater/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1"
tiny_http = "0.11"
tauri = { path = "../../tauri", features = ["updater"] }
time = { version = "0.3", features = ["formatting"] }
time = { version = "=0.3.15", features = ["formatting"] }

[features]
default = ["custom-protocol"]
Expand Down
39 changes: 19 additions & 20 deletions examples/api/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3d16461

Please sign in to comment.