-
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.
- Loading branch information
1 parent
6afa5ed
commit 8ffb8d9
Showing
3 changed files
with
10 additions
and
10 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vaporetto" | ||
version = "0.6.1" | ||
version = "0.6.2" | ||
edition = "2021" | ||
rust-version = "1.64" | ||
authors = ["Koichi Akabe <[email protected]>"] | ||
|
@@ -15,7 +15,7 @@ categories = ["text-processing", "no-std"] | |
[dependencies] | ||
bincode = { version = "2.0.0-rc.2", default-features = false, features = ["alloc", "derive"] } # MIT | ||
daachorse = "1.0.0" # MIT or Apache-2.0 | ||
hashbrown = "0.13.1" # MIT or Apache-2.0 | ||
hashbrown = "0.13.2" # MIT or Apache-2.0 | ||
|
||
liblinear = { version = "1", optional = true } # MIT | ||
|
||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "vaporetto_rules" | ||
version = "0.6.1" | ||
version = "0.6.2" | ||
edition = "2021" | ||
rust-version = "1.64" | ||
authors = ["Koichi Akabe <[email protected]>"] | ||
|
@@ -13,9 +13,9 @@ keywords = ["japanese", "analyzer", "tokenizer", "morphological"] | |
categories = ["text-processing", "no-std"] | ||
|
||
[dependencies] | ||
hashbrown = "0.13.1" # MIT or Apache-2.0 | ||
unicode-segmentation = "1.10.0" # MIT or Apache-2.0 | ||
vaporetto = { path = "../vaporetto", version = "=0.6.1", default-features = false, features = ["alloc"] } # MIT or Apache-2.0 | ||
hashbrown = "0.13.2" # MIT or Apache-2.0 | ||
unicode-segmentation = "1.10.1" # MIT or Apache-2.0 | ||
vaporetto = { path = "../vaporetto", version = "=0.6.2", default-features = false, features = ["alloc"] } # MIT or Apache-2.0 | ||
|
||
[dev-dependencies] | ||
vaporetto = { path = "../vaporetto", version = "=0.6.1" } # MIT or Apache-2.0 | ||
vaporetto = { path = "../vaporetto", version = "=0.6.2" } # 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,6 +1,6 @@ | ||
[package] | ||
name = "vaporetto_tantivy" | ||
version = "0.19.0" # Match with Tantivy version number | ||
version = "0.19.1" # Match with Tantivy version number | ||
edition = "2021" | ||
rust-version = "1.64" | ||
authors = ["Koichi Akabe <[email protected]>"] | ||
|
@@ -13,8 +13,8 @@ keywords = ["japanese", "tokenizer", "tantivy"] | |
categories = ["text-processing"] | ||
|
||
[dependencies] | ||
vaporetto = { path = "../vaporetto", version = "=0.6.1" } # MIT or Apache-2.0 | ||
vaporetto_rules = { path = "../vaporetto_rules", version = "=0.6.1" } # MIT or Apache-2.0 | ||
vaporetto = { path = "../vaporetto", version = "=0.6.2" } # MIT or Apache-2.0 | ||
vaporetto_rules = { path = "../vaporetto_rules", version = "=0.6.2" } # MIT or Apache-2.0 | ||
tantivy = "0.19" # MIT | ||
|
||
[dev-dependencies] | ||
|