-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update tantivy to 0.22 and ruzstd to 0.7.0 (#126)
* Update tantivy to 0.22 and ruzstd to 0.6.0 * Update Cargo.toml * MSRV to 1.75 * fix * fix * fix
- Loading branch information
1 parent
5bb8f85
commit 281b47f
Showing
5 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
strategy: | ||
matrix: | ||
rust: | ||
- 1.74.1 # MSRV | ||
- 1.75.0 # MSRV | ||
- stable | ||
- nightly | ||
steps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "vaporetto" | ||
version = "0.6.3" | ||
edition = "2021" | ||
rust-version = "1.74" | ||
rust-version = "1.75" | ||
authors = ["Koichi Akabe <[email protected]>"] | ||
description = "Vaporetto: a pointwise prediction based tokenizer" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "vaporetto_rules" | ||
version = "0.6.3" | ||
edition = "2021" | ||
rust-version = "1.74" | ||
rust-version = "1.75" | ||
authors = ["Koichi Akabe <[email protected]>"] | ||
description = "Rule-base filters for Vaporetto" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[package] | ||
name = "vaporetto_tantivy" | ||
version = "0.21.0" # Match with Tantivy version number | ||
version = "0.22.0" # Match with Tantivy version number | ||
edition = "2021" | ||
rust-version = "1.74" | ||
rust-version = "1.75" | ||
authors = ["Koichi Akabe <[email protected]>"] | ||
description = "Vaporetto Tokenizer for Tantivy" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -15,7 +15,7 @@ categories = ["text-processing"] | |
[dependencies] | ||
vaporetto = { path = "../vaporetto", version = "=0.6.3" } # MIT or Apache-2.0 | ||
vaporetto_rules = { path = "../vaporetto_rules", version = "=0.6.3" } # MIT or Apache-2.0 | ||
tantivy = "0.21" # MIT | ||
tantivy = "0.22" # MIT | ||
|
||
[dev-dependencies] | ||
ruzstd = "0.5.0" # MIT | ||
ruzstd = "0.7.0" # MIT |