Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 71ac5bc

Browse files
authoredApr 3, 2025··
Fix chitchat dead node cleanup (#5712)
* Upgrade chitchat * Fix license file * Fix use of unstable in chitchat
1 parent ea35a53 commit 71ac5bc

File tree

4 files changed

+110
-17
lines changed

4 files changed

+110
-17
lines changed
 

‎LICENSE-3rdparty.csv

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,7 @@ walkdir,https://github.com/BurntSushi/walkdir,Unlicense OR MIT,Andrew Gallant <j
496496
want,https://github.com/seanmonstar/want,MIT,Sean McArthur <sean@seanmonstar.com>
497497
warp,https://github.com/seanmonstar/warp,MIT,Sean McArthur <sean@seanmonstar.com>
498498
wasi,https://github.com/bytecodealliance/wasi,Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT,The Cranelift Project Developers
499+
wasi,https://github.com/bytecodealliance/wasi-rs,Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT,The Cranelift Project Developers
499500
wasix,https://github.com/wasix-org/wasix-abi-rust,Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT,"The Cranelift Project Developers, john-sharratt"
500501
wasm-bindgen,https://github.com/rustwasm/wasm-bindgen,MIT OR Apache-2.0,The wasm-bindgen Developers
501502
wasm-bindgen-backend,https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend,MIT OR Apache-2.0,The wasm-bindgen Developers
@@ -514,6 +515,7 @@ winapi-util,https://github.com/BurntSushi/winapi-util,Unlicense OR MIT,Andrew Ga
514515
windows,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
515516
winnow,https://github.com/winnow-rs/winnow,MIT,The winnow Authors
516517
winreg,https://github.com/gentoo90/winreg-rs,MIT,Igor Shaula <gentoo90@gmail.com>
518+
wit-bindgen-rt,https://github.com/bytecodealliance/wasi-rs,Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT,The wit-bindgen-rt Authors
517519
write16,https://github.com/hsivonen/write16,Apache-2.0 OR MIT,The write16 Authors
518520
writeable,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
519521
xattr,https://github.com/Stebalien/xattr,MIT OR Apache-2.0,Steven Allen <steven@stebalien.com>
@@ -523,6 +525,7 @@ yansi,https://github.com/SergioBenitez/yansi,MIT OR Apache-2.0,Sergio Benitez <s
523525
yoke,https://github.com/unicode-org/icu4x,Unicode-3.0,Manish Goregaokar <manishsmail@gmail.com>
524526
yoke-derive,https://github.com/unicode-org/icu4x,Unicode-3.0,Manish Goregaokar <manishsmail@gmail.com>
525527
zerocopy,https://github.com/google/zerocopy,BSD-2-Clause OR Apache-2.0 OR MIT,Joshua Liebow-Feeser <joshlf@google.com>
528+
zerocopy,https://github.com/google/zerocopy,BSD-2-Clause OR Apache-2.0 OR MIT,"Joshua Liebow-Feeser <joshlf@google.com>, Jack Wrenn <jswrenn@amazon.com>"
526529
zerofrom,https://github.com/unicode-org/icu4x,Unicode-3.0,Manish Goregaokar <manishsmail@gmail.com>
527530
zerofrom-derive,https://github.com/unicode-org/icu4x,Unicode-3.0,Manish Goregaokar <manishsmail@gmail.com>
528531
zeroize,https://github.com/RustCrypto/utils/tree/master/zeroize,Apache-2.0 OR MIT,The RustCrypto Project Developers

‎Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ archive:
9393
@mkdir -p "./quickwit-${BINARY_VERSION}/config"
9494
@mkdir -p "./quickwit-${BINARY_VERSION}/qwdata"
9595
@cp ./config/quickwit.yaml "./quickwit-${BINARY_VERSION}/config"
96-
@cp ./LICENSE_AGPLv3.0.txt "./quickwit-${BINARY_VERSION}"
96+
@cp ./LICENSE "./quickwit-${BINARY_VERSION}"
9797
@cp "${BINARY_FILE}" "./quickwit-${BINARY_VERSION}"
9898
@tar -czf "${ARCHIVE_NAME}.tar.gz" "./quickwit-${BINARY_VERSION}"
9999
@rm -rf "./quickwit-${BINARY_VERSION}"

‎quickwit/Cargo.lock

Lines changed: 104 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎quickwit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ binggan = { version = "0.14" }
9090
bytes = { version = "1", features = ["serde"] }
9191
bytesize = { version = "1.3.0", features = ["serde"] }
9292
bytestring = "1.3.0"
93-
chitchat = { git = "https://github.com/quickwit-oss/chitchat.git", rev = "54cbc70" }
93+
chitchat = { git = "https://github.com/quickwit-oss/chitchat.git", rev = "13968f0" }
9494
chrono = { version = "0.4", default-features = false, features = [
9595
"clock",
9696
"std",
@@ -138,7 +138,7 @@ indicatif = "0.17.3"
138138
itertools = "0.13"
139139
json_comments = "0.2"
140140
libz-sys = "1.1.8"
141-
lru = "0.12"
141+
lru = "0.13"
142142
lindera-core = "0.27.0"
143143
lindera-dictionary = "0.27.0"
144144
lindera-tokenizer = { version = "0.27.0", features = [

0 commit comments

Comments
 (0)
Please sign in to comment.