Skip to content

Commit

Permalink
fix(time): replaced hard dependency to the time crate from =0.3.15
Browse files Browse the repository at this point in the history
…to `^0.3.21`. Fixes tauri-apps#6973
jgeluk committed May 16, 2023

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
1 parent 3700793 commit 1eefb96
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/tauri-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ json-patch = "1.0"

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

[features]
default = [ "compression" ]
2 changes: 1 addition & 1 deletion core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -75,7 +75,7 @@ shared_child = { version = "1.0", optional = true }
os_pipe = { version = "1.0", optional = true }
raw-window-handle = "=0.5.0"
minisign-verify = { version = "0.2", optional = true }
time = { version = "=0.3.15", features = [ "parsing", "formatting" ], optional = true }
time = { version = "^0.3.21", features = [ "parsing", "formatting" ], optional = true }
os_info = { version = "3", optional = true }
regex = { version = "1.6.0", optional = true }
glob = "0.3"
2 changes: 1 addition & 1 deletion core/tests/app-updater/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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.15", features = ["formatting"] }
time = { version = "^0.3.21", features = ["formatting"] }

[features]
default = ["custom-protocol"]
2 changes: 1 addition & 1 deletion tooling/bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ repository = "https://github.com/tauri-apps/wry"

[dependencies]
anyhow = "1.0.40"
time = { version = "0.3", features = ["formatting"] }
time = { version = "^0.3.21", features = ["formatting"] }
tempfile = "3.2.0"
serde_json = "1.0"
serde = { version = "1.0", features = [ "derive" ] }
2 changes: 1 addition & 1 deletion tooling/bundler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@ glob = "0.3"

[target."cfg(target_os = \"macos\")".dependencies]
icns = { package = "tauri-icns", version = "0.1" }
time = { version = "0.3", features = [ "formatting" ] }
time = { version = "^0.3.21", features = [ "formatting" ] }
plist = "1"

[target."cfg(any(target_os = \"macos\", target_os = \"windows\"))".dependencies]

0 comments on commit 1eefb96

Please sign in to comment.