Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 55 additions & 53 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
resolver = "2"

[workspace.package]
version = "3.1.0"
version = "3.2.0"
edition = "2021"
authors = ["Manuel Gruber"]
license = "MIT"
Expand Down
4 changes: 4 additions & 0 deletions crates/git-same-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ serde = { workspace = true }
serde_json = { workspace = true }
shellexpand = { workspace = true }
tauri = { version = "2", features = [] }
# Pin: tauri's transitive `cookie` 0.18.1 calls time's Parsable::parse with the
# pre-0.3.52 one-arg signature; time 0.3.52 made it two-arg and fails to compile.
# No fixed cookie release exists yet. Remove this cap once cookie ships a fix.
time = ">=0.3, <0.3.52"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P3: The time version cap >=0.3, <0.3.52 is tighter than necessary and the rationale comment is slightly stale. time 0.3.53 (released 2026-07-01) already reverts the internal Parsable::parse breaking change from 0.3.52 to make the cookie crate compile again, so 0.3.53+ is now compatible. Consider relaxing the constraint to >=0.3, !=0.3.52 or updating the comment to note that time 0.3.53 already resolved the issue, and that the cap can be relaxed now rather than waiting for a cookie release.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At crates/git-same-app/Cargo.toml, line 30:

<comment>The `time` version cap `>=0.3, <0.3.52` is tighter than necessary and the rationale comment is slightly stale. `time` 0.3.53 (released 2026-07-01) already reverts the internal `Parsable::parse` breaking change from 0.3.52 to make the `cookie` crate compile again, so 0.3.53+ is now compatible. Consider relaxing the constraint to `>=0.3, !=0.3.52` or updating the comment to note that time 0.3.53 already resolved the issue, and that the cap can be relaxed now rather than waiting for a cookie release.</comment>

<file context>
@@ -24,6 +24,10 @@ serde = { workspace = true }
+# Pin: tauri's transitive `cookie` 0.18.1 calls time's Parsable::parse with the
+# pre-0.3.52 one-arg signature; time 0.3.52 made it two-arg and fails to compile.
+# No fixed cookie release exists yet. Remove this cap once cookie ships a fix.
+time = ">=0.3, <0.3.52"
 tauri-plugin-dialog = "2"
 tokio = { workspace = true }
</file context>
Suggested change
time = ">=0.3, <0.3.52"
time = ">=0.3, !=0.3.52"

tauri-plugin-dialog = "2"
tokio = { workspace = true }
toml = { workspace = true }
Loading