-
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.
Showing
8 changed files
with
14 additions
and
14 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
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
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
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.3.0" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["Koichi Akabe <[email protected]>"] | ||
description = "Vaporetto: a pointwise prediction based tokenizer" | ||
|
@@ -9,7 +9,7 @@ homepage = "https://github.com/daac-tools/vaporetto" | |
repository = "https://github.com/daac-tools/vaporetto" | ||
readme = "README.md" | ||
keywords = ["japanese", "analyzer", "tokenizer", "morphological"] | ||
categories = ["text-processing"] | ||
categories = ["text-processing", "no-std"] | ||
|
||
[dependencies] | ||
bincode = { version = "2.0.0-rc.1", default-features = false, features = ["alloc", "derive"] } # 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,16 +1,16 @@ | ||
[package] | ||
name = "vaporetto_rules" | ||
version = "0.3.0" | ||
edition = "2018" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["Koichi Akabe <[email protected]>"] | ||
description = "Rule-base filters for Vaporetto" | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/daac-tools/vaporetto" | ||
repository = "https://github.com/daac-tools/vaporetto" | ||
readme = "README.md" | ||
keywords = ["japanese", "analyzer", "tokenizer", "morphological"] | ||
categories = ["text-processing"] | ||
categories = ["text-processing", "no-std"] | ||
|
||
[dependencies] | ||
unicode-segmentation = "1.9.0" # MIT or Apache-2.0 | ||
vaporetto = { path = "../vaporetto", version = "0.3.0", default-features = false } # MIT or Apache-2.0 | ||
vaporetto = { path = "../vaporetto", version = "0.4.0", default-features = false } # 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.3.0" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["Koichi Akabe <[email protected]>"] | ||
description = "Vaporetto Tokenizer for Tantivy" | ||
|
@@ -12,8 +12,8 @@ keywords = ["japanese", "tokenizer", "tantivy"] | |
categories = ["text-processing"] | ||
|
||
[dependencies] | ||
vaporetto = { path = "../vaporetto", version = "0.3.0" } # MIT or Apache-2.0 | ||
vaporetto_rules = { path = "../vaporetto_rules", version = "0.3.0" } # MIT or Apache-2.0 | ||
vaporetto = { path = "../vaporetto", version = "0.4.0" } # MIT or Apache-2.0 | ||
vaporetto_rules = { path = "../vaporetto_rules", version = "0.4.0" } # MIT or Apache-2.0 | ||
tantivy = "0.17" # MIT | ||
|
||
[dev-dependencies] | ||
|