-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
9 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 = "mdbook-morsels" | ||
version = "0.0.6" | ||
version = "0.0.7" | ||
authors = ["Ze Yu <[email protected]>"] | ||
edition = "2018" | ||
description = "Morsels plugin for Mdbook." | ||
|
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 = "morsels_common" | ||
version = "0.0.6" | ||
version = "0.0.7" | ||
authors = ["Ze Yu <[email protected]>"] | ||
edition = "2018" | ||
description = "Internal library for other morsels packages." | ||
|
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 = "morsels_indexer" | ||
version = "0.0.6" | ||
version = "0.0.7" | ||
authors = ["Ze Yu <[email protected]>"] | ||
edition = "2018" | ||
description = "A complete and more scalable pre-built index approach to client-side search." | ||
|
@@ -26,10 +26,10 @@ csv = "1.1" | |
dashmap = "4" | ||
glob = "0.3" | ||
lazy_static = "1.4" | ||
morsels_common = { path = "../morsels_common", version="0.0.6" } | ||
morsels_lang_ascii = { path = "../morsels_languages/morsels_lang_ascii", version="0.0.6" } | ||
morsels_lang_latin = { path = "../morsels_languages/morsels_lang_latin", version="0.0.6" } | ||
morsels_lang_chinese = { path = "../morsels_languages/morsels_lang_chinese", version="0.0.6" } | ||
morsels_common = { path = "../morsels_common", version="0.0.7" } | ||
morsels_lang_ascii = { path = "../morsels_languages/morsels_lang_ascii", version="0.0.7" } | ||
morsels_lang_latin = { path = "../morsels_languages/morsels_lang_latin", version="0.0.7" } | ||
morsels_lang_chinese = { path = "../morsels_languages/morsels_lang_chinese", version="0.0.7" } | ||
normalize-line-endings = "0.3" | ||
num_cpus = "1.13.0" | ||
path-slash = "0.1.4" | ||
|
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 = "morsels_lang_ascii" | ||
version = "0.0.6" | ||
version = "0.0.7" | ||
authors = ["Ze Yu <[email protected]>"] | ||
edition = "2018" | ||
description = "Basic ascii tokenizer for morsels." | ||
|
@@ -14,7 +14,7 @@ crate-type = ["cdylib", "rlib"] | |
|
||
[dependencies] | ||
lazy_static = "1.4" | ||
morsels_common = { path = "../../morsels_common", version="0.0.6" } | ||
morsels_common = { path = "../../morsels_common", version="0.0.7" } | ||
regex = "1" | ||
rustc-hash = "1.1" | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
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 = "morsels_lang_chinese" | ||
version = "0.0.6" | ||
version = "0.0.7" | ||
authors = ["Ze Yu <[email protected]>"] | ||
edition = "2018" | ||
description = "Chinese tokenizer for morsels." | ||
|
@@ -14,7 +14,7 @@ crate-type = ["cdylib", "rlib"] | |
|
||
[dependencies] | ||
lazy_static = "1.4" | ||
morsels_common = { path = "../../morsels_common", version="0.0.6" } | ||
morsels_common = { path = "../../morsels_common", version="0.0.7" } | ||
regex = "1" | ||
rustc-hash = "1.1" | ||
jieba-rs = { version = "0.6.5", default-features = false } | ||
|
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 = "morsels_lang_latin" | ||
version = "0.0.6" | ||
version = "0.0.7" | ||
authors = ["Ze Yu <[email protected]>"] | ||
edition = "2018" | ||
description = "Ascii tokenizer with stemmers for morsels." | ||
|
@@ -13,8 +13,8 @@ license = "MIT" | |
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies] | ||
morsels_common = { path = "../../morsels_common", version="0.0.6" } | ||
morsels_lang_ascii = { path = "../morsels_lang_ascii", version="0.0.6" } | ||
morsels_common = { path = "../../morsels_common", version="0.0.7" } | ||
morsels_lang_ascii = { path = "../morsels_lang_ascii", version="0.0.7" } | ||
rustc-hash = "1.1" | ||
rust-stemmers = "^1.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
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 = "morsels_search" | ||
version = "0.0.6" | ||
version = "0.0.7" | ||
authors = ["Ze Yu <[email protected]>"] | ||
edition = "2018" | ||
|
||
|