Skip to content

Commit

Permalink
Update tantivy to 0.22 and ruzstd to 0.7.0 (#126)
Browse files Browse the repository at this point in the history
* Update tantivy to 0.22 and ruzstd to 0.6.0

* Update Cargo.toml

* MSRV to 1.75

* fix

* fix

* fix
  • Loading branch information
vbkaisetsu authored Jul 14, 2024
1 parent 5bb8f85 commit 281b47f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
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

0 comments on commit 281b47f

Please sign in to comment.