-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #255 from mh-northlander/feature/minimum-rust-support
Aggregate package information into root Cargo.toml
- Loading branch information
Showing
10 changed files
with
72 additions
and
60 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,17 +1,23 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
"sudachi", | ||
"sudachi-cli", | ||
"sudachi-fuzz", | ||
"plugin/input_text/*", | ||
"plugin/oov/*", | ||
"plugin/path_rewrite/*", | ||
"python" | ||
"python", | ||
] | ||
default-members = ["sudachi", "sudachi-cli"] | ||
|
||
default-members = [ | ||
"sudachi", | ||
"sudachi-cli" | ||
] | ||
|
||
resolver = "2" | ||
[workspace.package] | ||
version = "0.6.9-a1" | ||
authors = ["Works Applications <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.74.1" | ||
description = "Rust version of Sudachi, the Japanese Morphological Analyzer" | ||
readme = "README.md" | ||
homepage = "https://github.com/WorksApplications/sudachi.rs" | ||
repository = "https://github.com/WorksApplications/sudachi.rs" | ||
license = "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,9 +1,10 @@ | ||
[package] | ||
name = "default_input_text" | ||
version = "0.6.9-a1" | ||
authors = ["Works Applications <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
|
||
[lib] | ||
crate-type = ["cdylib"] | ||
|
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,9 +1,10 @@ | ||
[package] | ||
name = "simple_oov" | ||
version = "0.6.9-a1" | ||
authors = ["Works Applications <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
|
||
[lib] | ||
crate-type = ["cdylib"] | ||
|
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,9 +1,10 @@ | ||
[package] | ||
name = "join_katakana_oov" | ||
version = "0.6.9-a1" | ||
authors = ["Works Applications <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
|
||
[lib] | ||
crate-type = ["cdylib"] | ||
|
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,9 +1,10 @@ | ||
[package] | ||
name = "join_numeric" | ||
version = "0.6.9-a1" | ||
authors = ["Works Applications <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
|
||
[lib] | ||
crate-type = ["cdylib"] | ||
|
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,13 +1,14 @@ | ||
[package] | ||
name = "sudachi-cli" | ||
version = "0.6.9-a1" | ||
authors = ["Works Applications <[email protected]>"] | ||
edition = "2018" | ||
description = "Rust version of Sudachi, the Japanese Morphological Analyzer" | ||
readme = "../README.md" | ||
homepage = "https://github.com/WorksApplications/sudachi.rs" | ||
repository = "https://github.com/WorksApplications/sudachi.rs" | ||
license = "Apache-2.0" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
description.workspace = true | ||
readme.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
|
||
[dependencies] | ||
sudachi = { path = "../sudachi" } | ||
|
@@ -22,4 +23,4 @@ path = "src/main.rs" | |
|
||
[features] | ||
# Compile dictionary into executable (specifying dictionary becomes optional) | ||
bake_dictionary = [] | ||
bake_dictionary = [] |
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,14 +1,16 @@ | ||
[package] | ||
name = "sudachi-fuzz" | ||
version = "0.0.1" | ||
authors = ["Works Applications <[email protected]>"] | ||
edition = "2021" | ||
description = "Rust version of Sudachi, the Japanese Morphological Analyzer" | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
description.workspace = true | ||
license.workspace = true | ||
|
||
[dependencies] | ||
sudachi = { path = "../sudachi" } | ||
criterion = "0.5" | ||
arbitrary = "1" | ||
|
||
[target.'cfg(unix)'.dependencies] | ||
honggfuzz = "0.5" | ||
honggfuzz = "0.5" |
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,13 +1,14 @@ | ||
[package] | ||
name = "sudachi" | ||
version = "0.6.9-a1" | ||
authors = ["Works Applications <[email protected]>"] | ||
edition = "2018" | ||
description = "Rust version of Sudachi, the Japanese Morphological Analyzer" | ||
readme = "README.md" | ||
homepage = "https://github.com/WorksApplications/sudachi.rs" | ||
repository = "https://github.com/WorksApplications/sudachi.rs" | ||
license = "Apache-2.0" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
description.workspace = true | ||
readme.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
|
||
[dependencies] # this should be sorted | ||
aho-corasick = "1" # MIT/Apache 2.0 | ||
|
@@ -38,4 +39,4 @@ join_numeric = { path = "../plugin/path_rewrite/join_numeric" } | |
join_katakana_oov = { path = "../plugin/path_rewrite/join_katakana_oov" } | ||
|
||
[lib] | ||
crate-type = ["rlib"] | ||
crate-type = ["rlib"] |
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