Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tantivy to 0.22 and ruzstd to 0.7.0 #126

Merged
merged 8 commits into from
Jul 14, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
rust:
- 1.74.1 # MSRV
- 1.75.0 # MSRV
- stable
- nightly
steps:
Expand Down
2 changes: 1 addition & 1 deletion examples/embedded_device/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ alloc-cortex-m = "0.4.0"

[build-dependencies]
vaporetto = { path = "../../vaporetto", default-features = false, features = ["alloc"] }
ruzstd = "0.5.0" # MIT
ruzstd = "0.7.0" # MIT

[profile.release]
codegen-units = 1
Expand Down
2 changes: 1 addition & 1 deletion vaporetto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion vaporetto_rules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions vaporetto_tantivy/Cargo.toml
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"
Expand All @@ -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
Loading