Skip to content

Commit

Permalink
Release 0.6.4 (#134)
Browse files Browse the repository at this point in the history
* Support tantivy 0.22

* Release 0.6.4

* fix

* fix
  • Loading branch information
vbkaisetsu authored Nov 4, 2024
1 parent ccde8ba commit fa65215
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 27 deletions.
4 changes: 1 addition & 3 deletions convert_kytea_model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,4 @@ edition = "2021"
[dependencies]
clap = { version = "4.2", features = ["derive"] } # MIT or Apache-2.0
vaporetto = { path = "../vaporetto", features = ["kytea"] } # MIT or Apache-2.0
zstd = { version = "0.13", features = ["zstdmt"] } # MIT
# workaround: https://github.com/gyscos/zstd-rs/issues/270
zstd-sys = "=2.0.9"
zstd = { version = "0.13.2", features = ["zstdmt"] } # MIT
4 changes: 1 addition & 3 deletions evaluate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@ edition = "2021"
clap = { version = "4.2", features = ["derive"] } # MIT or Apache-2.0
vaporetto = { path = "../vaporetto" } # MIT or Apache-2.0
vaporetto_rules = { path = "../vaporetto_rules" } # MIT or Apache-2.0
zstd = "0.13" # MIT
# workaround: https://github.com/gyscos/zstd-rs/issues/270
zstd-sys = "=2.0.9"
zstd = "0.13.2" # MIT
4 changes: 1 addition & 3 deletions manipulate_model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,4 @@ clap = { version = "4.2", features = ["derive"] } # MIT or Apache-2.0
csv = "1.2" # Unlicense or MIT
serde = { version = "1.0", features = ["derive"] } # MIT or Apache-2.0
vaporetto = { path = "../vaporetto" } # MIT or Apache-2.0
zstd = { version = "0.13", features = ["zstdmt"] } # MIT
# workaround: https://github.com/gyscos/zstd-rs/issues/270
zstd-sys = "=2.0.9"
zstd = { version = "0.13.2", features = ["zstdmt"] } # MIT
4 changes: 1 addition & 3 deletions predict/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,4 @@ atty = "0.2" # MIT
clap = { version = "4.2", features = ["derive"] } # MIT or Apache-2.0
vaporetto = { path = "../vaporetto" } # MIT or Apache-2.0
vaporetto_rules = { path = "../vaporetto_rules" } # MIT or Apache-2.0
zstd = "0.13" # MIT
# workaround: https://github.com/gyscos/zstd-rs/issues/270
zstd-sys = "=2.0.9"
zstd = "0.13.2" # MIT
4 changes: 1 addition & 3 deletions train/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@ edition = "2021"
clap = { version = "4.2", features = ["derive"] } # MIT or Apache-2.0
vaporetto = { path = "../vaporetto", features = ["train"] } # MIT or Apache-2.0
vaporetto_rules = { path = "../vaporetto_rules" } # MIT or Apache-2.0
zstd = { version = "0.13", features = ["zstdmt"] } # MIT
# workaround: https://github.com/gyscos/zstd-rs/issues/270
zstd-sys = "=2.0.9"
zstd = { version = "0.13.2", features = ["zstdmt"] } # MIT
4 changes: 2 additions & 2 deletions vaporetto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vaporetto"
version = "0.6.3"
version = "0.6.4"
edition = "2021"
rust-version = "1.75"
authors = ["Koichi Akabe <[email protected]>"]
Expand All @@ -15,7 +15,7 @@ categories = ["text-processing", "no-std"]
[dependencies]
bincode = { version = "2.0.0-rc.3", default-features = false, features = ["alloc", "derive"] } # MIT
daachorse = "1.0.0" # MIT or Apache-2.0
hashbrown = "0.14.0" # MIT or Apache-2.0
hashbrown = "0.15.0" # MIT or Apache-2.0

liblinear = { version = "1", optional = true } # MIT

Expand Down
2 changes: 1 addition & 1 deletion vaporetto/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use bincode::{
error::{DecodeError, EncodeError},
Decode, Encode,
};
use hashbrown::{hash_map::DefaultHashBuilder, HashMap};
use hashbrown::{DefaultHashBuilder, HashMap};

#[cfg(feature = "fix-weight-length")]
#[inline(always)]
Expand Down
10 changes: 5 additions & 5 deletions vaporetto_rules/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vaporetto_rules"
version = "0.6.3"
version = "0.6.4"
edition = "2021"
rust-version = "1.75"
authors = ["Koichi Akabe <[email protected]>"]
Expand All @@ -13,9 +13,9 @@ keywords = ["japanese", "analyzer", "tokenizer", "morphological"]
categories = ["text-processing", "no-std"]

[dependencies]
hashbrown = "0.14.0" # MIT or Apache-2.0
unicode-segmentation = "1.10.1" # MIT or Apache-2.0
vaporetto = { path = "../vaporetto", version = "=0.6.3", default-features = false, features = ["alloc"] } # MIT or Apache-2.0
hashbrown = "0.15.0" # MIT or Apache-2.0
unicode-segmentation = "1.12.0" # MIT or Apache-2.0
vaporetto = { path = "../vaporetto", version = "=0.6.4", default-features = false, features = ["alloc"] } # MIT or Apache-2.0

[dev-dependencies]
vaporetto = { path = "../vaporetto", version = "=0.6.3" } # MIT or Apache-2.0
vaporetto = { path = "../vaporetto", version = "=0.6.4" } # MIT or Apache-2.0
8 changes: 4 additions & 4 deletions vaporetto_tantivy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vaporetto_tantivy"
version = "0.22.0" # Match with Tantivy version number
version = "0.22.1" # Match with Tantivy version number
edition = "2021"
rust-version = "1.75"
authors = ["Koichi Akabe <[email protected]>"]
Expand All @@ -13,9 +13,9 @@ keywords = ["japanese", "tokenizer", "tantivy"]
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
vaporetto = { path = "../vaporetto", version = "=0.6.4" } # MIT or Apache-2.0
vaporetto_rules = { path = "../vaporetto_rules", version = "=0.6.4" } # MIT or Apache-2.0
tantivy = "0.22" # MIT

[dev-dependencies]
ruzstd = "0.7.0" # MIT
ruzstd = "0.7.2" # MIT

0 comments on commit fa65215

Please sign in to comment.