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
37 changes: 18 additions & 19 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ refrain-host = { path = "crates/refrain-host" }
refrain-app = { path = "crates/refrain-app" }

serde = { version = "=1.0.229", features = ["derive"] }
serde_json = "=1.0.147"
blake3 = "=1.8.3"
thiserror = "=2.0.18"
serde_json = "=1.0.151"
blake3 = "=1.8.7"
thiserror = "=2.0.20"

# Config is ruled TOML (SPEC 10.1, D-N8): a real format needs a real parser,
# and a hand-rolled one would re-create exactly the escaping/typing edge cases
Expand All @@ -52,7 +52,7 @@ rfd = { version = "=0.17.2", default-features = false, features = ["pollster", "
# 与其余 18 个直接依赖一样精确钉住:`"0.6"` 是一个范围,而 rfd 0.17.2 解析到的
# 是 0.6.2,两者一致纯属当下巧合。范围让今天的绿证明不了明天的绿。
raw-window-handle = "=0.6.2"
rusqlite = { version = "=0.40.1", features = ["bundled"] }
rusqlite = { version = "=0.40.2", features = ["bundled"] }

# The icon pipeline (C7): SVG needs a real parser (a hand-rolled one is the
# DTD/entity surface the format exists to refuse) and a real rasteriser;
Expand All @@ -69,7 +69,7 @@ image = "=0.25.10"
# picks a SIMD substring kernel at run time; `trash` is the only cross-platform
# route to a *recoverable* delete (IFileOperation on Windows) — writing it by
# hand would mean platform implementations and no undo.
ignore = "=0.4.31"
ignore = "=0.4.33"
rayon = "=1.12.0"
memchr = "=2.8.3"
trash = "=5.2.6"
Expand Down
Loading