Skip to content
Merged
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
65 changes: 44 additions & 21 deletions Cargo.lock

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

7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,12 @@ tokio = { version = "1.45", features = ["macros", "rt-multi-thread", "time", "si
toml = "0.8"
url = "2.5"
uuid = { version = "1.17", features = ["v4", "v5"] }
webbrowser = "1.0"
# `hardened` refuses anything that is not http(s). Every URL we open is an
# https endpoint, two of them straight out of a server response, and
# RUSTSEC-2026-0257 was an argument injection through a non-http(s) URL — so
# there is nothing to lose and a whole class of input to reject (defence in
# depth on top of the 1.2.2 fix).
webbrowser = { version = "1.2.2", features = ["hardened"] }
zip = { version = "6", default-features = false, features = ["deflate-flate2"] }

[features]
Expand Down