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
9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -234,3 +234,12 @@ incremental = false
[profile.debugging]
inherits = "dev"
debug = true

# core2 0.4.0 is yanked on crates.io but no 0.4.1+ exists, and libflate /
# libflate_lz77 (pulled in via the `jieba` feature of nodedb-fts →
# include-flate → include-flate-compress) still require `core2 ^0.4`.
# Point cargo at the upstream git source so fresh resolution (CI without
# a committed lockfile) succeeds — git sources bypass the registry's yank
# check. Safe to remove once libflate releases a bump off core2.
[patch.crates-io]
core2 = { git = "https://github.com/technocreatives/core2", rev = "545e84bcb0f235b12e21351e0c69767958efe2a7" }
2 changes: 1 addition & 1 deletion nodedb-fts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ thiserror = { workspace = true }

# Optional: dictionary-based CJK segmentation
lindera = { version = "2.3", optional = true }
jieba-rs = { version = "0.8", optional = true }
jieba-rs = { version = "0.9", optional = true }
icu_segmenter = { version = "1", optional = true }
whatlang = { version = "0.18", optional = true }

Expand Down
Loading
Loading