jpreprocess 0.1.1__tar.gz → 0.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/Cargo.lock +311 -200
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/Cargo.toml +25 -25
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/PKG-INFO +3 -3
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/bindings/python/Cargo.toml +3 -7
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/bindings/python/src/lib.rs +2 -1
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/bindings/python/src/structs.rs +3 -3
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/README.md +1 -1
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/src/bin/dict_tools/main.rs +12 -10
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/src/dictionary/mod.rs +7 -5
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/src/lib.rs +6 -2
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/README.md +1 -1
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/ctype/mod.rs +32 -22
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/pos/meishi.rs +29 -18
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/pos/mod.rs +39 -18
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary/README.md +1 -1
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary-builder/README.md +1 -1
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/README.md +1 -1
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-njd/README.md +1 -1
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-njd/src/lib.rs +11 -3
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-njd/src/node.rs +0 -3
- jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/accent_phrase/mod.rs → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk/accent_phrase.rs +23 -24
- jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/accent_type/mod.rs → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk/accent_type.rs +22 -17
- {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk}/digit/mod.rs +10 -0
- jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk/mod.rs +10 -0
- jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/pronunciation/mod.rs → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk/pronunciation.rs +5 -7
- jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/unvoiced_vowel/mod.rs → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk/unvoiced_vowel.rs +11 -10
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-window/README.md +1 -1
- jpreprocess-0.1.1/crates/jpreprocess-naist-jdic/Cargo.toml +0 -30
- jpreprocess-0.1.1/crates/jpreprocess-naist-jdic/NOTICE.txt +0 -152
- jpreprocess-0.1.1/crates/jpreprocess-naist-jdic/README.md +0 -36
- jpreprocess-0.1.1/crates/jpreprocess-naist-jdic/build.rs +0 -107
- jpreprocess-0.1.1/crates/jpreprocess-naist-jdic/src/lib.rs +0 -1
- jpreprocess-0.1.1/crates/jpreprocess-naist-jdic/src/lindera.rs +0 -78
- jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/long_vowel/mod.rs +0 -5
- jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/mod.rs +0 -17
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/bindings/python/.gitignore +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/bindings/python/README.md +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/bindings/python/jpreprocess/__init__.py +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/bindings/python/jpreprocess/dictionary.py +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/bindings/python/jpreprocess/jpreprocess.pyi +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/bindings/python/jpreprocess/py.typed +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/bindings/python/pytests/test_simple.py +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/bindings/python/src/binding.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/bindings/python/src/dictionary.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/Cargo.toml +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/src/bin/dict_tools/dict_query.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/src/bin/jpreprocess.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/src/dictionary/kind.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/src/normalize_text.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/tests/.gitignore +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/tests/min-dict/char_def.bin +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/tests/min-dict/dict.da +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/tests/min-dict/dict.vals +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/tests/min-dict/dict.words +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/tests/min-dict/dict.wordsidx +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/tests/min-dict/matrix.mtx +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/tests/min-dict/unk.bin +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/tests/open_jtalk.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess/tests/user_dictionary.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/Cargo.toml +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/accent_rule.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/cform.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/ctype/five.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/ctype/four.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/ctype/ka_irregular.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/ctype/keiyoushi.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/ctype/lower_two.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/ctype/old.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/ctype/one.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/ctype/sa_irregular.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/ctype/special.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/ctype/upper_two.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/error.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/lib.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/pos/doushi.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/pos/fukushi.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/pos/joshi.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/pos/keiyoushi.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/pos/kigou.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/pos/settoushi.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/pronunciation/mod.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/pronunciation/mora.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/pronunciation/mora_dict.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/pronunciation/mora_enum.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/pronunciation/phoneme.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/word_details.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-core/src/word_entry.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary/Cargo.toml +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary/src/default.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary/src/lib.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary/src/serializer/jpreprocess/current.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary/src/serializer/jpreprocess/mod.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary/src/serializer/lindera.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary/src/serializer/mod.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary/src/store.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary-builder/Cargo.toml +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary-builder/NOTICE.txt +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary-builder/src/build_dict.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary-builder/src/ipadic_builder.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary-builder/src/lib.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary-builder/src/to_csv/da.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-dictionary-builder/src/to_csv/mod.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/Cargo.toml +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/src/feature/builder.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/src/feature/limit.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/src/feature/mod.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/src/label/accent_phrase.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/src/label/breath_group.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/src/label/mod.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/src/label/utterance.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/src/label/word.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/src/lib.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/src/word_attr/cform.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/src/word_attr/ctype.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/src/word_attr/mod.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-jpcommon/src/word_attr/pos.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-njd/Cargo.toml +0 -0
- {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk}/digit/digit_sequence/builder.rs +0 -0
- {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk}/digit/digit_sequence/mod.rs +0 -0
- {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk}/digit/digit_sequence/score.rs +0 -0
- {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk}/digit/lut/class1.rs +0 -0
- {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk}/digit/lut/class2.rs +0 -0
- {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk}/digit/lut/class3.rs +0 -0
- {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk}/digit/lut/mod.rs +0 -0
- {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk}/digit/lut/numeral.rs +0 -0
- {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk}/digit/lut/others.rs +0 -0
- {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.3/crates/jpreprocess-njd/src/open_jtalk}/digit/symbols.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-window/Cargo.toml +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-window/src/lib.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/crates/jpreprocess-window/src/structures.rs +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/jpreprocess/__init__.py +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/jpreprocess/dictionary.py +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/jpreprocess/jpreprocess.pyi +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/jpreprocess/py.typed +0 -0
- {jpreprocess-0.1.1 → jpreprocess-0.1.3}/pyproject.toml +0 -0
|
@@ -10,9 +10,9 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
|
10
10
|
|
|
11
11
|
[[package]]
|
|
12
12
|
name = "ahash"
|
|
13
|
-
version = "0.8.
|
|
13
|
+
version = "0.8.11"
|
|
14
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
-
checksum = "
|
|
15
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
16
16
|
dependencies = [
|
|
17
17
|
"cfg-if",
|
|
18
18
|
"once_cell",
|
|
@@ -22,9 +22,9 @@ dependencies = [
|
|
|
22
22
|
|
|
23
23
|
[[package]]
|
|
24
24
|
name = "aho-corasick"
|
|
25
|
-
version = "1.1.
|
|
25
|
+
version = "1.1.3"
|
|
26
26
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
-
checksum = "
|
|
27
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
28
28
|
dependencies = [
|
|
29
29
|
"memchr",
|
|
30
30
|
]
|
|
@@ -37,9 +37,9 @@ checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
|
|
|
37
37
|
|
|
38
38
|
[[package]]
|
|
39
39
|
name = "anstream"
|
|
40
|
-
version = "0.6.
|
|
40
|
+
version = "0.6.13"
|
|
41
41
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
-
checksum = "
|
|
42
|
+
checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb"
|
|
43
43
|
dependencies = [
|
|
44
44
|
"anstyle",
|
|
45
45
|
"anstyle-parse",
|
|
@@ -57,27 +57,27 @@ checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
|
|
|
57
57
|
|
|
58
58
|
[[package]]
|
|
59
59
|
name = "anstyle-parse"
|
|
60
|
-
version = "0.2.
|
|
60
|
+
version = "0.2.3"
|
|
61
61
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
-
checksum = "
|
|
62
|
+
checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
|
|
63
63
|
dependencies = [
|
|
64
64
|
"utf8parse",
|
|
65
65
|
]
|
|
66
66
|
|
|
67
67
|
[[package]]
|
|
68
68
|
name = "anstyle-query"
|
|
69
|
-
version = "1.0.
|
|
69
|
+
version = "1.0.2"
|
|
70
70
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
-
checksum = "
|
|
71
|
+
checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
|
|
72
72
|
dependencies = [
|
|
73
73
|
"windows-sys",
|
|
74
74
|
]
|
|
75
75
|
|
|
76
76
|
[[package]]
|
|
77
77
|
name = "anstyle-wincon"
|
|
78
|
-
version = "3.0.
|
|
78
|
+
version = "3.0.2"
|
|
79
79
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
-
checksum = "
|
|
80
|
+
checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
|
|
81
81
|
dependencies = [
|
|
82
82
|
"anstyle",
|
|
83
83
|
"windows-sys",
|
|
@@ -85,9 +85,9 @@ dependencies = [
|
|
|
85
85
|
|
|
86
86
|
[[package]]
|
|
87
87
|
name = "anyhow"
|
|
88
|
-
version = "1.0.
|
|
88
|
+
version = "1.0.82"
|
|
89
89
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
-
checksum = "
|
|
90
|
+
checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519"
|
|
91
91
|
|
|
92
92
|
[[package]]
|
|
93
93
|
name = "autocfg"
|
|
@@ -97,9 +97,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
|
97
97
|
|
|
98
98
|
[[package]]
|
|
99
99
|
name = "base64"
|
|
100
|
-
version = "0.
|
|
100
|
+
version = "0.22.0"
|
|
101
101
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
-
checksum = "
|
|
102
|
+
checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51"
|
|
103
103
|
|
|
104
104
|
[[package]]
|
|
105
105
|
name = "bincode"
|
|
@@ -116,11 +116,17 @@ version = "1.3.2"
|
|
|
116
116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
117
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
118
118
|
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "bitflags"
|
|
121
|
+
version = "2.5.0"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
|
|
124
|
+
|
|
119
125
|
[[package]]
|
|
120
126
|
name = "bumpalo"
|
|
121
|
-
version = "3.
|
|
127
|
+
version = "3.15.4"
|
|
122
128
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
-
checksum = "
|
|
129
|
+
checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa"
|
|
124
130
|
|
|
125
131
|
[[package]]
|
|
126
132
|
name = "byteorder"
|
|
@@ -130,12 +136,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
130
136
|
|
|
131
137
|
[[package]]
|
|
132
138
|
name = "cc"
|
|
133
|
-
version = "1.0.
|
|
139
|
+
version = "1.0.90"
|
|
134
140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
-
checksum = "
|
|
136
|
-
dependencies = [
|
|
137
|
-
"libc",
|
|
138
|
-
]
|
|
141
|
+
checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5"
|
|
139
142
|
|
|
140
143
|
[[package]]
|
|
141
144
|
name = "cfg-if"
|
|
@@ -145,9 +148,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
145
148
|
|
|
146
149
|
[[package]]
|
|
147
150
|
name = "clap"
|
|
148
|
-
version = "4.5.
|
|
151
|
+
version = "4.5.4"
|
|
149
152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
-
checksum = "
|
|
153
|
+
checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
|
|
151
154
|
dependencies = [
|
|
152
155
|
"clap_builder",
|
|
153
156
|
"clap_derive",
|
|
@@ -155,9 +158,9 @@ dependencies = [
|
|
|
155
158
|
|
|
156
159
|
[[package]]
|
|
157
160
|
name = "clap_builder"
|
|
158
|
-
version = "4.5.
|
|
161
|
+
version = "4.5.2"
|
|
159
162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
-
checksum = "
|
|
163
|
+
checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
|
|
161
164
|
dependencies = [
|
|
162
165
|
"anstream",
|
|
163
166
|
"anstyle",
|
|
@@ -167,11 +170,11 @@ dependencies = [
|
|
|
167
170
|
|
|
168
171
|
[[package]]
|
|
169
172
|
name = "clap_derive"
|
|
170
|
-
version = "4.5.
|
|
173
|
+
version = "4.5.4"
|
|
171
174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
-
checksum = "
|
|
175
|
+
checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64"
|
|
173
176
|
dependencies = [
|
|
174
|
-
"heck",
|
|
177
|
+
"heck 0.5.0",
|
|
175
178
|
"proc-macro2",
|
|
176
179
|
"quote",
|
|
177
180
|
"syn",
|
|
@@ -191,45 +194,37 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
|
|
|
191
194
|
|
|
192
195
|
[[package]]
|
|
193
196
|
name = "crc32fast"
|
|
194
|
-
version = "1.
|
|
197
|
+
version = "1.4.0"
|
|
195
198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
-
checksum = "
|
|
199
|
+
checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
|
|
197
200
|
dependencies = [
|
|
198
201
|
"cfg-if",
|
|
199
202
|
]
|
|
200
203
|
|
|
201
204
|
[[package]]
|
|
202
205
|
name = "crossbeam-deque"
|
|
203
|
-
version = "0.8.
|
|
206
|
+
version = "0.8.5"
|
|
204
207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
-
checksum = "
|
|
208
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
|
206
209
|
dependencies = [
|
|
207
|
-
"cfg-if",
|
|
208
210
|
"crossbeam-epoch",
|
|
209
211
|
"crossbeam-utils",
|
|
210
212
|
]
|
|
211
213
|
|
|
212
214
|
[[package]]
|
|
213
215
|
name = "crossbeam-epoch"
|
|
214
|
-
version = "0.9.
|
|
216
|
+
version = "0.9.18"
|
|
215
217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
-
checksum = "
|
|
218
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
217
219
|
dependencies = [
|
|
218
|
-
"autocfg",
|
|
219
|
-
"cfg-if",
|
|
220
220
|
"crossbeam-utils",
|
|
221
|
-
"memoffset",
|
|
222
|
-
"scopeguard",
|
|
223
221
|
]
|
|
224
222
|
|
|
225
223
|
[[package]]
|
|
226
224
|
name = "crossbeam-utils"
|
|
227
|
-
version = "0.8.
|
|
225
|
+
version = "0.8.19"
|
|
228
226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
-
checksum = "
|
|
230
|
-
dependencies = [
|
|
231
|
-
"cfg-if",
|
|
232
|
-
]
|
|
227
|
+
checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
|
|
233
228
|
|
|
234
229
|
[[package]]
|
|
235
230
|
name = "csv"
|
|
@@ -254,9 +249,9 @@ dependencies = [
|
|
|
254
249
|
|
|
255
250
|
[[package]]
|
|
256
251
|
name = "either"
|
|
257
|
-
version = "1.
|
|
252
|
+
version = "1.10.0"
|
|
258
253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
-
checksum = "
|
|
254
|
+
checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
|
|
260
255
|
|
|
261
256
|
[[package]]
|
|
262
257
|
name = "encoding"
|
|
@@ -352,9 +347,9 @@ dependencies = [
|
|
|
352
347
|
|
|
353
348
|
[[package]]
|
|
354
349
|
name = "env_logger"
|
|
355
|
-
version = "0.11.
|
|
350
|
+
version = "0.11.3"
|
|
356
351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
-
checksum = "
|
|
352
|
+
checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9"
|
|
358
353
|
dependencies = [
|
|
359
354
|
"anstream",
|
|
360
355
|
"anstyle",
|
|
@@ -363,9 +358,19 @@ dependencies = [
|
|
|
363
358
|
"log",
|
|
364
359
|
]
|
|
365
360
|
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "errno"
|
|
363
|
+
version = "0.3.8"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
|
|
366
|
+
dependencies = [
|
|
367
|
+
"libc",
|
|
368
|
+
"windows-sys",
|
|
369
|
+
]
|
|
370
|
+
|
|
366
371
|
[[package]]
|
|
367
372
|
name = "example-lru"
|
|
368
|
-
version = "0.
|
|
373
|
+
version = "0.9.1"
|
|
369
374
|
dependencies = [
|
|
370
375
|
"jpreprocess",
|
|
371
376
|
"jpreprocess-core",
|
|
@@ -376,14 +381,14 @@ dependencies = [
|
|
|
376
381
|
|
|
377
382
|
[[package]]
|
|
378
383
|
name = "example-simple"
|
|
379
|
-
version = "0.
|
|
384
|
+
version = "0.9.1"
|
|
380
385
|
dependencies = [
|
|
381
386
|
"jpreprocess",
|
|
382
387
|
]
|
|
383
388
|
|
|
384
389
|
[[package]]
|
|
385
390
|
name = "example-wasm"
|
|
386
|
-
version = "0.
|
|
391
|
+
version = "0.9.1"
|
|
387
392
|
dependencies = [
|
|
388
393
|
"jpreprocess",
|
|
389
394
|
"js-sys",
|
|
@@ -395,21 +400,21 @@ dependencies = [
|
|
|
395
400
|
|
|
396
401
|
[[package]]
|
|
397
402
|
name = "filetime"
|
|
398
|
-
version = "0.2.
|
|
403
|
+
version = "0.2.23"
|
|
399
404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
-
checksum = "
|
|
405
|
+
checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
|
|
401
406
|
dependencies = [
|
|
402
407
|
"cfg-if",
|
|
403
408
|
"libc",
|
|
404
|
-
"redox_syscall
|
|
409
|
+
"redox_syscall",
|
|
405
410
|
"windows-sys",
|
|
406
411
|
]
|
|
407
412
|
|
|
408
413
|
[[package]]
|
|
409
414
|
name = "flate2"
|
|
410
|
-
version = "1.0.
|
|
415
|
+
version = "1.0.29"
|
|
411
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
-
checksum = "
|
|
417
|
+
checksum = "4556222738635b7a3417ae6130d8f52201e45a0c4d1a907f0826383adb5f85e7"
|
|
413
418
|
dependencies = [
|
|
414
419
|
"crc32fast",
|
|
415
420
|
"miniz_oxide",
|
|
@@ -417,18 +422,18 @@ dependencies = [
|
|
|
417
422
|
|
|
418
423
|
[[package]]
|
|
419
424
|
name = "form_urlencoded"
|
|
420
|
-
version = "1.2.
|
|
425
|
+
version = "1.2.1"
|
|
421
426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
-
checksum = "
|
|
427
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
423
428
|
dependencies = [
|
|
424
429
|
"percent-encoding",
|
|
425
430
|
]
|
|
426
431
|
|
|
427
432
|
[[package]]
|
|
428
433
|
name = "getrandom"
|
|
429
|
-
version = "0.2.
|
|
434
|
+
version = "0.2.12"
|
|
430
435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
-
checksum = "
|
|
436
|
+
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
|
|
432
437
|
dependencies = [
|
|
433
438
|
"cfg-if",
|
|
434
439
|
"libc",
|
|
@@ -457,6 +462,12 @@ version = "0.4.1"
|
|
|
457
462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
463
|
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
459
464
|
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "heck"
|
|
467
|
+
version = "0.5.0"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
470
|
+
|
|
460
471
|
[[package]]
|
|
461
472
|
name = "humantime"
|
|
462
473
|
version = "2.1.0"
|
|
@@ -465,9 +476,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
|
|
465
476
|
|
|
466
477
|
[[package]]
|
|
467
478
|
name = "idna"
|
|
468
|
-
version = "0.
|
|
479
|
+
version = "0.5.0"
|
|
469
480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
-
checksum = "
|
|
481
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
|
471
482
|
dependencies = [
|
|
472
483
|
"unicode-bidi",
|
|
473
484
|
"unicode-normalization",
|
|
@@ -475,28 +486,28 @@ dependencies = [
|
|
|
475
486
|
|
|
476
487
|
[[package]]
|
|
477
488
|
name = "indoc"
|
|
478
|
-
version = "2.0.
|
|
489
|
+
version = "2.0.5"
|
|
479
490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
-
checksum = "
|
|
491
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
481
492
|
|
|
482
493
|
[[package]]
|
|
483
494
|
name = "itoa"
|
|
484
|
-
version = "1.0.
|
|
495
|
+
version = "1.0.10"
|
|
485
496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
-
checksum = "
|
|
497
|
+
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
|
487
498
|
|
|
488
499
|
[[package]]
|
|
489
500
|
name = "jlabel"
|
|
490
|
-
version = "0.1.
|
|
501
|
+
version = "0.1.4"
|
|
491
502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
-
checksum = "
|
|
503
|
+
checksum = "145ee6f495871a0cde6d49ddfa0d103d07430c449d95b6d92fbfb032d622f0b7"
|
|
493
504
|
dependencies = [
|
|
494
505
|
"thiserror",
|
|
495
506
|
]
|
|
496
507
|
|
|
497
508
|
[[package]]
|
|
498
509
|
name = "jpreprocess"
|
|
499
|
-
version = "0.
|
|
510
|
+
version = "0.9.1"
|
|
500
511
|
dependencies = [
|
|
501
512
|
"clap",
|
|
502
513
|
"jlabel",
|
|
@@ -514,7 +525,7 @@ dependencies = [
|
|
|
514
525
|
|
|
515
526
|
[[package]]
|
|
516
527
|
name = "jpreprocess-core"
|
|
517
|
-
version = "0.
|
|
528
|
+
version = "0.9.1"
|
|
518
529
|
dependencies = [
|
|
519
530
|
"aho-corasick",
|
|
520
531
|
"bincode",
|
|
@@ -528,7 +539,7 @@ dependencies = [
|
|
|
528
539
|
|
|
529
540
|
[[package]]
|
|
530
541
|
name = "jpreprocess-dictionary"
|
|
531
|
-
version = "0.
|
|
542
|
+
version = "0.9.1"
|
|
532
543
|
dependencies = [
|
|
533
544
|
"anyhow",
|
|
534
545
|
"bincode",
|
|
@@ -543,7 +554,7 @@ dependencies = [
|
|
|
543
554
|
|
|
544
555
|
[[package]]
|
|
545
556
|
name = "jpreprocess-dictionary-builder"
|
|
546
|
-
version = "0.
|
|
557
|
+
version = "0.9.1"
|
|
547
558
|
dependencies = [
|
|
548
559
|
"anyhow",
|
|
549
560
|
"bincode",
|
|
@@ -561,7 +572,7 @@ dependencies = [
|
|
|
561
572
|
|
|
562
573
|
[[package]]
|
|
563
574
|
name = "jpreprocess-jpcommon"
|
|
564
|
-
version = "0.
|
|
575
|
+
version = "0.9.1"
|
|
565
576
|
dependencies = [
|
|
566
577
|
"jlabel",
|
|
567
578
|
"jpreprocess-core",
|
|
@@ -570,7 +581,7 @@ dependencies = [
|
|
|
570
581
|
|
|
571
582
|
[[package]]
|
|
572
583
|
name = "jpreprocess-naist-jdic"
|
|
573
|
-
version = "0.
|
|
584
|
+
version = "0.9.1"
|
|
574
585
|
dependencies = [
|
|
575
586
|
"encoding",
|
|
576
587
|
"flate2",
|
|
@@ -583,7 +594,7 @@ dependencies = [
|
|
|
583
594
|
|
|
584
595
|
[[package]]
|
|
585
596
|
name = "jpreprocess-njd"
|
|
586
|
-
version = "0.
|
|
597
|
+
version = "0.9.1"
|
|
587
598
|
dependencies = [
|
|
588
599
|
"aho-corasick",
|
|
589
600
|
"jpreprocess-core",
|
|
@@ -595,7 +606,7 @@ dependencies = [
|
|
|
595
606
|
|
|
596
607
|
[[package]]
|
|
597
608
|
name = "jpreprocess-python"
|
|
598
|
-
version = "0.1.
|
|
609
|
+
version = "0.1.3"
|
|
599
610
|
dependencies = [
|
|
600
611
|
"jpreprocess",
|
|
601
612
|
"jpreprocess-core",
|
|
@@ -611,28 +622,28 @@ dependencies = [
|
|
|
611
622
|
|
|
612
623
|
[[package]]
|
|
613
624
|
name = "jpreprocess-window"
|
|
614
|
-
version = "0.
|
|
625
|
+
version = "0.9.1"
|
|
615
626
|
|
|
616
627
|
[[package]]
|
|
617
628
|
name = "js-sys"
|
|
618
|
-
version = "0.3.
|
|
629
|
+
version = "0.3.69"
|
|
619
630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
-
checksum = "
|
|
631
|
+
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
|
|
621
632
|
dependencies = [
|
|
622
633
|
"wasm-bindgen",
|
|
623
634
|
]
|
|
624
635
|
|
|
625
636
|
[[package]]
|
|
626
637
|
name = "libc"
|
|
627
|
-
version = "0.2.
|
|
638
|
+
version = "0.2.153"
|
|
628
639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
-
checksum = "
|
|
640
|
+
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
|
|
630
641
|
|
|
631
642
|
[[package]]
|
|
632
643
|
name = "lindera-cc-cedict-builder"
|
|
633
|
-
version = "0.
|
|
644
|
+
version = "0.30.0"
|
|
634
645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
-
checksum = "
|
|
646
|
+
checksum = "f6022a8309a287dbef425fd09a61585351670c83001d74f6c089979e2330b683"
|
|
636
647
|
dependencies = [
|
|
637
648
|
"anyhow",
|
|
638
649
|
"bincode",
|
|
@@ -649,9 +660,9 @@ dependencies = [
|
|
|
649
660
|
|
|
650
661
|
[[package]]
|
|
651
662
|
name = "lindera-core"
|
|
652
|
-
version = "0.
|
|
663
|
+
version = "0.30.0"
|
|
653
664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
-
checksum = "
|
|
665
|
+
checksum = "d9a0e858753a02b1a3524fae4fbb11ca4b3a947128fd7854b797386562678be8"
|
|
655
666
|
dependencies = [
|
|
656
667
|
"anyhow",
|
|
657
668
|
"bincode",
|
|
@@ -666,9 +677,9 @@ dependencies = [
|
|
|
666
677
|
|
|
667
678
|
[[package]]
|
|
668
679
|
name = "lindera-decompress"
|
|
669
|
-
version = "0.
|
|
680
|
+
version = "0.30.0"
|
|
670
681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
-
checksum = "
|
|
682
|
+
checksum = "0e406345f6f8b665b9a129c67079c18ca9d97e9d171d102b4106a64a592c285e"
|
|
672
683
|
dependencies = [
|
|
673
684
|
"anyhow",
|
|
674
685
|
"flate2",
|
|
@@ -677,9 +688,9 @@ dependencies = [
|
|
|
677
688
|
|
|
678
689
|
[[package]]
|
|
679
690
|
name = "lindera-dictionary"
|
|
680
|
-
version = "0.
|
|
691
|
+
version = "0.30.0"
|
|
681
692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
-
checksum = "
|
|
693
|
+
checksum = "3e2a3ec0e5fd6768a27c6ec1040e8470d3a5926418f7afe065859e98aabb3bfe"
|
|
683
694
|
dependencies = [
|
|
684
695
|
"anyhow",
|
|
685
696
|
"bincode",
|
|
@@ -691,13 +702,15 @@ dependencies = [
|
|
|
691
702
|
"lindera-ko-dic-builder",
|
|
692
703
|
"lindera-unidic-builder",
|
|
693
704
|
"serde",
|
|
705
|
+
"strum",
|
|
706
|
+
"strum_macros",
|
|
694
707
|
]
|
|
695
708
|
|
|
696
709
|
[[package]]
|
|
697
710
|
name = "lindera-ipadic-builder"
|
|
698
|
-
version = "0.
|
|
711
|
+
version = "0.30.0"
|
|
699
712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
-
checksum = "
|
|
713
|
+
checksum = "7f0979a56bc57e9c9be2996dff232c47aa146a2e7baebf5dd567e388eba3dd90"
|
|
701
714
|
dependencies = [
|
|
702
715
|
"anyhow",
|
|
703
716
|
"bincode",
|
|
@@ -716,9 +729,9 @@ dependencies = [
|
|
|
716
729
|
|
|
717
730
|
[[package]]
|
|
718
731
|
name = "lindera-ipadic-neologd-builder"
|
|
719
|
-
version = "0.
|
|
732
|
+
version = "0.30.0"
|
|
720
733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
-
checksum = "
|
|
734
|
+
checksum = "eccd18ed5f65d1d64ac0cbfa1d6827bfbbaf6530520ae6847e6a91ee38f47e20"
|
|
722
735
|
dependencies = [
|
|
723
736
|
"anyhow",
|
|
724
737
|
"bincode",
|
|
@@ -737,9 +750,9 @@ dependencies = [
|
|
|
737
750
|
|
|
738
751
|
[[package]]
|
|
739
752
|
name = "lindera-ko-dic-builder"
|
|
740
|
-
version = "0.
|
|
753
|
+
version = "0.30.0"
|
|
741
754
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
-
checksum = "
|
|
755
|
+
checksum = "ae176afa8535ca2a5ee9471873f85d531db0a6c32a3c42b41084506aac22b577"
|
|
743
756
|
dependencies = [
|
|
744
757
|
"anyhow",
|
|
745
758
|
"bincode",
|
|
@@ -756,9 +769,9 @@ dependencies = [
|
|
|
756
769
|
|
|
757
770
|
[[package]]
|
|
758
771
|
name = "lindera-tokenizer"
|
|
759
|
-
version = "0.
|
|
772
|
+
version = "0.30.0"
|
|
760
773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
-
checksum = "
|
|
774
|
+
checksum = "457285bdde84571aa510c9e05371904305a55e8a541fa1473d4393062f06932d"
|
|
762
775
|
dependencies = [
|
|
763
776
|
"bincode",
|
|
764
777
|
"lindera-core",
|
|
@@ -770,9 +783,9 @@ dependencies = [
|
|
|
770
783
|
|
|
771
784
|
[[package]]
|
|
772
785
|
name = "lindera-unidic-builder"
|
|
773
|
-
version = "0.
|
|
786
|
+
version = "0.30.0"
|
|
774
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
-
checksum = "
|
|
788
|
+
checksum = "dcaab8f061d5b944b1e424f49c7efbf8f276e8a72e4f4ff956d01e46d481f008"
|
|
776
789
|
dependencies = [
|
|
777
790
|
"anyhow",
|
|
778
791
|
"bincode",
|
|
@@ -787,6 +800,12 @@ dependencies = [
|
|
|
787
800
|
"yada",
|
|
788
801
|
]
|
|
789
802
|
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "linux-raw-sys"
|
|
805
|
+
version = "0.4.13"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
|
|
808
|
+
|
|
790
809
|
[[package]]
|
|
791
810
|
name = "lock_api"
|
|
792
811
|
version = "0.4.11"
|
|
@@ -799,24 +818,24 @@ dependencies = [
|
|
|
799
818
|
|
|
800
819
|
[[package]]
|
|
801
820
|
name = "log"
|
|
802
|
-
version = "0.4.
|
|
821
|
+
version = "0.4.21"
|
|
803
822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
-
checksum = "
|
|
823
|
+
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
|
805
824
|
|
|
806
825
|
[[package]]
|
|
807
826
|
name = "lru"
|
|
808
|
-
version = "0.12.
|
|
827
|
+
version = "0.12.3"
|
|
809
828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
-
checksum = "
|
|
829
|
+
checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc"
|
|
811
830
|
dependencies = [
|
|
812
831
|
"hashbrown",
|
|
813
832
|
]
|
|
814
833
|
|
|
815
834
|
[[package]]
|
|
816
835
|
name = "memchr"
|
|
817
|
-
version = "2.
|
|
836
|
+
version = "2.7.1"
|
|
818
837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
-
checksum = "
|
|
838
|
+
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
|
|
820
839
|
|
|
821
840
|
[[package]]
|
|
822
841
|
name = "memoffset"
|
|
@@ -829,9 +848,9 @@ dependencies = [
|
|
|
829
848
|
|
|
830
849
|
[[package]]
|
|
831
850
|
name = "miniz_oxide"
|
|
832
|
-
version = "0.7.
|
|
851
|
+
version = "0.7.2"
|
|
833
852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
-
checksum = "
|
|
853
|
+
checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
|
|
835
854
|
dependencies = [
|
|
836
855
|
"adler",
|
|
837
856
|
]
|
|
@@ -860,16 +879,16 @@ checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
|
|
860
879
|
dependencies = [
|
|
861
880
|
"cfg-if",
|
|
862
881
|
"libc",
|
|
863
|
-
"redox_syscall
|
|
882
|
+
"redox_syscall",
|
|
864
883
|
"smallvec",
|
|
865
|
-
"windows-targets",
|
|
884
|
+
"windows-targets 0.48.5",
|
|
866
885
|
]
|
|
867
886
|
|
|
868
887
|
[[package]]
|
|
869
888
|
name = "percent-encoding"
|
|
870
|
-
version = "2.3.
|
|
889
|
+
version = "2.3.1"
|
|
871
890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
-
checksum = "
|
|
891
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
873
892
|
|
|
874
893
|
[[package]]
|
|
875
894
|
name = "phf"
|
|
@@ -921,18 +940,18 @@ checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
|
|
|
921
940
|
|
|
922
941
|
[[package]]
|
|
923
942
|
name = "proc-macro2"
|
|
924
|
-
version = "1.0.
|
|
943
|
+
version = "1.0.79"
|
|
925
944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
-
checksum = "
|
|
945
|
+
checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e"
|
|
927
946
|
dependencies = [
|
|
928
947
|
"unicode-ident",
|
|
929
948
|
]
|
|
930
949
|
|
|
931
950
|
[[package]]
|
|
932
951
|
name = "pyo3"
|
|
933
|
-
version = "0.
|
|
952
|
+
version = "0.21.2"
|
|
934
953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
-
checksum = "
|
|
954
|
+
checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
|
|
936
955
|
dependencies = [
|
|
937
956
|
"cfg-if",
|
|
938
957
|
"indoc",
|
|
@@ -948,9 +967,9 @@ dependencies = [
|
|
|
948
967
|
|
|
949
968
|
[[package]]
|
|
950
969
|
name = "pyo3-build-config"
|
|
951
|
-
version = "0.
|
|
970
|
+
version = "0.21.2"
|
|
952
971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
-
checksum = "
|
|
972
|
+
checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
|
|
954
973
|
dependencies = [
|
|
955
974
|
"once_cell",
|
|
956
975
|
"target-lexicon",
|
|
@@ -958,9 +977,9 @@ dependencies = [
|
|
|
958
977
|
|
|
959
978
|
[[package]]
|
|
960
979
|
name = "pyo3-ffi"
|
|
961
|
-
version = "0.
|
|
980
|
+
version = "0.21.2"
|
|
962
981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
-
checksum = "
|
|
982
|
+
checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
|
|
964
983
|
dependencies = [
|
|
965
984
|
"libc",
|
|
966
985
|
"pyo3-build-config",
|
|
@@ -968,9 +987,9 @@ dependencies = [
|
|
|
968
987
|
|
|
969
988
|
[[package]]
|
|
970
989
|
name = "pyo3-macros"
|
|
971
|
-
version = "0.
|
|
990
|
+
version = "0.21.2"
|
|
972
991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
-
checksum = "
|
|
992
|
+
checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
|
|
974
993
|
dependencies = [
|
|
975
994
|
"proc-macro2",
|
|
976
995
|
"pyo3-macros-backend",
|
|
@@ -980,11 +999,11 @@ dependencies = [
|
|
|
980
999
|
|
|
981
1000
|
[[package]]
|
|
982
1001
|
name = "pyo3-macros-backend"
|
|
983
|
-
version = "0.
|
|
1002
|
+
version = "0.21.2"
|
|
984
1003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
-
checksum = "
|
|
1004
|
+
checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
|
|
986
1005
|
dependencies = [
|
|
987
|
-
"heck",
|
|
1006
|
+
"heck 0.4.1",
|
|
988
1007
|
"proc-macro2",
|
|
989
1008
|
"pyo3-build-config",
|
|
990
1009
|
"quote",
|
|
@@ -993,9 +1012,9 @@ dependencies = [
|
|
|
993
1012
|
|
|
994
1013
|
[[package]]
|
|
995
1014
|
name = "pythonize"
|
|
996
|
-
version = "0.
|
|
1015
|
+
version = "0.21.1"
|
|
997
1016
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
-
checksum = "
|
|
1017
|
+
checksum = "9d0664248812c38cc55a4ed07f88e4df516ce82604b93b1ffdc041aa77a6cb3c"
|
|
999
1018
|
dependencies = [
|
|
1000
1019
|
"pyo3",
|
|
1001
1020
|
"serde",
|
|
@@ -1027,9 +1046,9 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
|
1027
1046
|
|
|
1028
1047
|
[[package]]
|
|
1029
1048
|
name = "rayon"
|
|
1030
|
-
version = "1.
|
|
1049
|
+
version = "1.10.0"
|
|
1031
1050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
-
checksum = "
|
|
1051
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
1033
1052
|
dependencies = [
|
|
1034
1053
|
"either",
|
|
1035
1054
|
"rayon-core",
|
|
@@ -1037,37 +1056,28 @@ dependencies = [
|
|
|
1037
1056
|
|
|
1038
1057
|
[[package]]
|
|
1039
1058
|
name = "rayon-core"
|
|
1040
|
-
version = "1.12.
|
|
1059
|
+
version = "1.12.1"
|
|
1041
1060
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
|
-
checksum = "
|
|
1061
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
1043
1062
|
dependencies = [
|
|
1044
1063
|
"crossbeam-deque",
|
|
1045
1064
|
"crossbeam-utils",
|
|
1046
1065
|
]
|
|
1047
1066
|
|
|
1048
|
-
[[package]]
|
|
1049
|
-
name = "redox_syscall"
|
|
1050
|
-
version = "0.3.5"
|
|
1051
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
-
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
|
1053
|
-
dependencies = [
|
|
1054
|
-
"bitflags",
|
|
1055
|
-
]
|
|
1056
|
-
|
|
1057
1067
|
[[package]]
|
|
1058
1068
|
name = "redox_syscall"
|
|
1059
1069
|
version = "0.4.1"
|
|
1060
1070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
1071
|
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
1062
1072
|
dependencies = [
|
|
1063
|
-
"bitflags",
|
|
1073
|
+
"bitflags 1.3.2",
|
|
1064
1074
|
]
|
|
1065
1075
|
|
|
1066
1076
|
[[package]]
|
|
1067
1077
|
name = "regex"
|
|
1068
|
-
version = "1.10.
|
|
1078
|
+
version = "1.10.4"
|
|
1069
1079
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1070
|
-
checksum = "
|
|
1080
|
+
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
|
|
1071
1081
|
dependencies = [
|
|
1072
1082
|
"aho-corasick",
|
|
1073
1083
|
"memchr",
|
|
@@ -1077,9 +1087,9 @@ dependencies = [
|
|
|
1077
1087
|
|
|
1078
1088
|
[[package]]
|
|
1079
1089
|
name = "regex-automata"
|
|
1080
|
-
version = "0.4.
|
|
1090
|
+
version = "0.4.6"
|
|
1081
1091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
-
checksum = "
|
|
1092
|
+
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
|
|
1083
1093
|
dependencies = [
|
|
1084
1094
|
"aho-corasick",
|
|
1085
1095
|
"memchr",
|
|
@@ -1094,11 +1104,12 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
|
|
1094
1104
|
|
|
1095
1105
|
[[package]]
|
|
1096
1106
|
name = "ring"
|
|
1097
|
-
version = "0.17.
|
|
1107
|
+
version = "0.17.8"
|
|
1098
1108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
-
checksum = "
|
|
1109
|
+
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
|
|
1100
1110
|
dependencies = [
|
|
1101
1111
|
"cc",
|
|
1112
|
+
"cfg-if",
|
|
1102
1113
|
"getrandom",
|
|
1103
1114
|
"libc",
|
|
1104
1115
|
"spin",
|
|
@@ -1106,11 +1117,24 @@ dependencies = [
|
|
|
1106
1117
|
"windows-sys",
|
|
1107
1118
|
]
|
|
1108
1119
|
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "rustix"
|
|
1122
|
+
version = "0.38.32"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89"
|
|
1125
|
+
dependencies = [
|
|
1126
|
+
"bitflags 2.5.0",
|
|
1127
|
+
"errno",
|
|
1128
|
+
"libc",
|
|
1129
|
+
"linux-raw-sys",
|
|
1130
|
+
"windows-sys",
|
|
1131
|
+
]
|
|
1132
|
+
|
|
1109
1133
|
[[package]]
|
|
1110
1134
|
name = "rustls"
|
|
1111
|
-
version = "0.22.
|
|
1135
|
+
version = "0.22.4"
|
|
1112
1136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
-
checksum = "
|
|
1137
|
+
checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
|
|
1114
1138
|
dependencies = [
|
|
1115
1139
|
"log",
|
|
1116
1140
|
"ring",
|
|
@@ -1122,9 +1146,9 @@ dependencies = [
|
|
|
1122
1146
|
|
|
1123
1147
|
[[package]]
|
|
1124
1148
|
name = "rustls-pki-types"
|
|
1125
|
-
version = "1.
|
|
1149
|
+
version = "1.4.0"
|
|
1126
1150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
-
checksum = "
|
|
1151
|
+
checksum = "868e20fada228fefaf6b652e00cc73623d54f8171e7352c18bb281571f2d92da"
|
|
1128
1152
|
|
|
1129
1153
|
[[package]]
|
|
1130
1154
|
name = "rustls-webpki"
|
|
@@ -1138,10 +1162,16 @@ dependencies = [
|
|
|
1138
1162
|
]
|
|
1139
1163
|
|
|
1140
1164
|
[[package]]
|
|
1141
|
-
name = "
|
|
1165
|
+
name = "rustversion"
|
|
1142
1166
|
version = "1.0.15"
|
|
1143
1167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
-
checksum = "
|
|
1168
|
+
checksum = "80af6f9131f277a45a3fba6ce8e2258037bb0477a67e610d3c1fe046ab31de47"
|
|
1169
|
+
|
|
1170
|
+
[[package]]
|
|
1171
|
+
name = "ryu"
|
|
1172
|
+
version = "1.0.17"
|
|
1173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
|
+
checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
|
|
1145
1175
|
|
|
1146
1176
|
[[package]]
|
|
1147
1177
|
name = "scopeguard"
|
|
@@ -1151,9 +1181,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
1151
1181
|
|
|
1152
1182
|
[[package]]
|
|
1153
1183
|
name = "serde"
|
|
1154
|
-
version = "1.0.
|
|
1184
|
+
version = "1.0.199"
|
|
1155
1185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
-
checksum = "
|
|
1186
|
+
checksum = "0c9f6e76df036c77cd94996771fb40db98187f096dd0b9af39c6c6e452ba966a"
|
|
1157
1187
|
dependencies = [
|
|
1158
1188
|
"serde_derive",
|
|
1159
1189
|
]
|
|
@@ -1171,9 +1201,9 @@ dependencies = [
|
|
|
1171
1201
|
|
|
1172
1202
|
[[package]]
|
|
1173
1203
|
name = "serde_derive"
|
|
1174
|
-
version = "1.0.
|
|
1204
|
+
version = "1.0.199"
|
|
1175
1205
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
-
checksum = "
|
|
1206
|
+
checksum = "11bd257a6541e141e42ca6d24ae26f7714887b47e89aa739099104c7e4d3b7fc"
|
|
1177
1207
|
dependencies = [
|
|
1178
1208
|
"proc-macro2",
|
|
1179
1209
|
"quote",
|
|
@@ -1199,9 +1229,9 @@ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
|
1199
1229
|
|
|
1200
1230
|
[[package]]
|
|
1201
1231
|
name = "smallvec"
|
|
1202
|
-
version = "1.13.
|
|
1232
|
+
version = "1.13.2"
|
|
1203
1233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
|
-
checksum = "
|
|
1234
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
1205
1235
|
|
|
1206
1236
|
[[package]]
|
|
1207
1237
|
name = "spin"
|
|
@@ -1215,6 +1245,28 @@ version = "0.11.0"
|
|
|
1215
1245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
1246
|
checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01"
|
|
1217
1247
|
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "strum"
|
|
1250
|
+
version = "0.26.2"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29"
|
|
1253
|
+
dependencies = [
|
|
1254
|
+
"strum_macros",
|
|
1255
|
+
]
|
|
1256
|
+
|
|
1257
|
+
[[package]]
|
|
1258
|
+
name = "strum_macros"
|
|
1259
|
+
version = "0.26.2"
|
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1261
|
+
checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946"
|
|
1262
|
+
dependencies = [
|
|
1263
|
+
"heck 0.4.1",
|
|
1264
|
+
"proc-macro2",
|
|
1265
|
+
"quote",
|
|
1266
|
+
"rustversion",
|
|
1267
|
+
"syn",
|
|
1268
|
+
]
|
|
1269
|
+
|
|
1218
1270
|
[[package]]
|
|
1219
1271
|
name = "subtle"
|
|
1220
1272
|
version = "2.5.0"
|
|
@@ -1223,9 +1275,9 @@ checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
|
|
|
1223
1275
|
|
|
1224
1276
|
[[package]]
|
|
1225
1277
|
name = "syn"
|
|
1226
|
-
version = "2.0.
|
|
1278
|
+
version = "2.0.53"
|
|
1227
1279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
-
checksum = "
|
|
1280
|
+
checksum = "7383cd0e49fff4b6b90ca5670bfd3e9d6a733b3f90c686605aa7eec8c4996032"
|
|
1229
1281
|
dependencies = [
|
|
1230
1282
|
"proc-macro2",
|
|
1231
1283
|
"quote",
|
|
@@ -1245,24 +1297,24 @@ dependencies = [
|
|
|
1245
1297
|
|
|
1246
1298
|
[[package]]
|
|
1247
1299
|
name = "target-lexicon"
|
|
1248
|
-
version = "0.12.
|
|
1300
|
+
version = "0.12.14"
|
|
1249
1301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1250
|
-
checksum = "
|
|
1302
|
+
checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
|
|
1251
1303
|
|
|
1252
1304
|
[[package]]
|
|
1253
1305
|
name = "thiserror"
|
|
1254
|
-
version = "1.0.
|
|
1306
|
+
version = "1.0.59"
|
|
1255
1307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
-
checksum = "
|
|
1308
|
+
checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa"
|
|
1257
1309
|
dependencies = [
|
|
1258
1310
|
"thiserror-impl",
|
|
1259
1311
|
]
|
|
1260
1312
|
|
|
1261
1313
|
[[package]]
|
|
1262
1314
|
name = "thiserror-impl"
|
|
1263
|
-
version = "1.0.
|
|
1315
|
+
version = "1.0.59"
|
|
1264
1316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
-
checksum = "
|
|
1317
|
+
checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66"
|
|
1266
1318
|
dependencies = [
|
|
1267
1319
|
"proc-macro2",
|
|
1268
1320
|
"quote",
|
|
@@ -1286,9 +1338,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
1286
1338
|
|
|
1287
1339
|
[[package]]
|
|
1288
1340
|
name = "unicode-bidi"
|
|
1289
|
-
version = "0.3.
|
|
1341
|
+
version = "0.3.15"
|
|
1290
1342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
-
checksum = "
|
|
1343
|
+
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
|
1292
1344
|
|
|
1293
1345
|
[[package]]
|
|
1294
1346
|
name = "unicode-ident"
|
|
@@ -1298,9 +1350,9 @@ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
|
1298
1350
|
|
|
1299
1351
|
[[package]]
|
|
1300
1352
|
name = "unicode-normalization"
|
|
1301
|
-
version = "0.1.
|
|
1353
|
+
version = "0.1.23"
|
|
1302
1354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
-
checksum = "
|
|
1355
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
|
1304
1356
|
dependencies = [
|
|
1305
1357
|
"tinyvec",
|
|
1306
1358
|
]
|
|
@@ -1319,9 +1371,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
1319
1371
|
|
|
1320
1372
|
[[package]]
|
|
1321
1373
|
name = "ureq"
|
|
1322
|
-
version = "2.9.
|
|
1374
|
+
version = "2.9.7"
|
|
1323
1375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
-
checksum = "
|
|
1376
|
+
checksum = "d11a831e3c0b56e438a28308e7c810799e3c118417f342d30ecec080105395cd"
|
|
1325
1377
|
dependencies = [
|
|
1326
1378
|
"base64",
|
|
1327
1379
|
"log",
|
|
@@ -1335,9 +1387,9 @@ dependencies = [
|
|
|
1335
1387
|
|
|
1336
1388
|
[[package]]
|
|
1337
1389
|
name = "url"
|
|
1338
|
-
version = "2.
|
|
1390
|
+
version = "2.5.0"
|
|
1339
1391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
-
checksum = "
|
|
1392
|
+
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
|
|
1341
1393
|
dependencies = [
|
|
1342
1394
|
"form_urlencoded",
|
|
1343
1395
|
"idna",
|
|
@@ -1364,9 +1416,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
1364
1416
|
|
|
1365
1417
|
[[package]]
|
|
1366
1418
|
name = "wasm-bindgen"
|
|
1367
|
-
version = "0.2.
|
|
1419
|
+
version = "0.2.92"
|
|
1368
1420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
-
checksum = "
|
|
1421
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
|
1370
1422
|
dependencies = [
|
|
1371
1423
|
"cfg-if",
|
|
1372
1424
|
"wasm-bindgen-macro",
|
|
@@ -1374,9 +1426,9 @@ dependencies = [
|
|
|
1374
1426
|
|
|
1375
1427
|
[[package]]
|
|
1376
1428
|
name = "wasm-bindgen-backend"
|
|
1377
|
-
version = "0.2.
|
|
1429
|
+
version = "0.2.92"
|
|
1378
1430
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
-
checksum = "
|
|
1431
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
|
1380
1432
|
dependencies = [
|
|
1381
1433
|
"bumpalo",
|
|
1382
1434
|
"log",
|
|
@@ -1389,9 +1441,9 @@ dependencies = [
|
|
|
1389
1441
|
|
|
1390
1442
|
[[package]]
|
|
1391
1443
|
name = "wasm-bindgen-macro"
|
|
1392
|
-
version = "0.2.
|
|
1444
|
+
version = "0.2.92"
|
|
1393
1445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
-
checksum = "
|
|
1446
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
|
1395
1447
|
dependencies = [
|
|
1396
1448
|
"quote",
|
|
1397
1449
|
"wasm-bindgen-macro-support",
|
|
@@ -1399,9 +1451,9 @@ dependencies = [
|
|
|
1399
1451
|
|
|
1400
1452
|
[[package]]
|
|
1401
1453
|
name = "wasm-bindgen-macro-support"
|
|
1402
|
-
version = "0.2.
|
|
1454
|
+
version = "0.2.92"
|
|
1403
1455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
-
checksum = "
|
|
1456
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
1405
1457
|
dependencies = [
|
|
1406
1458
|
"proc-macro2",
|
|
1407
1459
|
"quote",
|
|
@@ -1412,9 +1464,9 @@ dependencies = [
|
|
|
1412
1464
|
|
|
1413
1465
|
[[package]]
|
|
1414
1466
|
name = "wasm-bindgen-shared"
|
|
1415
|
-
version = "0.2.
|
|
1467
|
+
version = "0.2.92"
|
|
1416
1468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
-
checksum = "
|
|
1469
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
|
1418
1470
|
|
|
1419
1471
|
[[package]]
|
|
1420
1472
|
name = "webpki-roots"
|
|
@@ -1427,11 +1479,11 @@ dependencies = [
|
|
|
1427
1479
|
|
|
1428
1480
|
[[package]]
|
|
1429
1481
|
name = "windows-sys"
|
|
1430
|
-
version = "0.
|
|
1482
|
+
version = "0.52.0"
|
|
1431
1483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
-
checksum = "
|
|
1484
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1433
1485
|
dependencies = [
|
|
1434
|
-
"windows-targets",
|
|
1486
|
+
"windows-targets 0.52.4",
|
|
1435
1487
|
]
|
|
1436
1488
|
|
|
1437
1489
|
[[package]]
|
|
@@ -1440,13 +1492,28 @@ version = "0.48.5"
|
|
|
1440
1492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
1493
|
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
1442
1494
|
dependencies = [
|
|
1443
|
-
"windows_aarch64_gnullvm",
|
|
1444
|
-
"windows_aarch64_msvc",
|
|
1445
|
-
"windows_i686_gnu",
|
|
1446
|
-
"windows_i686_msvc",
|
|
1447
|
-
"windows_x86_64_gnu",
|
|
1448
|
-
"windows_x86_64_gnullvm",
|
|
1449
|
-
"windows_x86_64_msvc",
|
|
1495
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
1496
|
+
"windows_aarch64_msvc 0.48.5",
|
|
1497
|
+
"windows_i686_gnu 0.48.5",
|
|
1498
|
+
"windows_i686_msvc 0.48.5",
|
|
1499
|
+
"windows_x86_64_gnu 0.48.5",
|
|
1500
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
1501
|
+
"windows_x86_64_msvc 0.48.5",
|
|
1502
|
+
]
|
|
1503
|
+
|
|
1504
|
+
[[package]]
|
|
1505
|
+
name = "windows-targets"
|
|
1506
|
+
version = "0.52.4"
|
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
+
checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
|
|
1509
|
+
dependencies = [
|
|
1510
|
+
"windows_aarch64_gnullvm 0.52.4",
|
|
1511
|
+
"windows_aarch64_msvc 0.52.4",
|
|
1512
|
+
"windows_i686_gnu 0.52.4",
|
|
1513
|
+
"windows_i686_msvc 0.52.4",
|
|
1514
|
+
"windows_x86_64_gnu 0.52.4",
|
|
1515
|
+
"windows_x86_64_gnullvm 0.52.4",
|
|
1516
|
+
"windows_x86_64_msvc 0.52.4",
|
|
1450
1517
|
]
|
|
1451
1518
|
|
|
1452
1519
|
[[package]]
|
|
@@ -1455,56 +1522,100 @@ version = "0.48.5"
|
|
|
1455
1522
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
1523
|
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
1457
1524
|
|
|
1525
|
+
[[package]]
|
|
1526
|
+
name = "windows_aarch64_gnullvm"
|
|
1527
|
+
version = "0.52.4"
|
|
1528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1529
|
+
checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
|
|
1530
|
+
|
|
1458
1531
|
[[package]]
|
|
1459
1532
|
name = "windows_aarch64_msvc"
|
|
1460
1533
|
version = "0.48.5"
|
|
1461
1534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
1535
|
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
1463
1536
|
|
|
1537
|
+
[[package]]
|
|
1538
|
+
name = "windows_aarch64_msvc"
|
|
1539
|
+
version = "0.52.4"
|
|
1540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1541
|
+
checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
|
|
1542
|
+
|
|
1464
1543
|
[[package]]
|
|
1465
1544
|
name = "windows_i686_gnu"
|
|
1466
1545
|
version = "0.48.5"
|
|
1467
1546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
1547
|
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
1469
1548
|
|
|
1549
|
+
[[package]]
|
|
1550
|
+
name = "windows_i686_gnu"
|
|
1551
|
+
version = "0.52.4"
|
|
1552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
|
+
checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
|
|
1554
|
+
|
|
1470
1555
|
[[package]]
|
|
1471
1556
|
name = "windows_i686_msvc"
|
|
1472
1557
|
version = "0.48.5"
|
|
1473
1558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
1559
|
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
1475
1560
|
|
|
1561
|
+
[[package]]
|
|
1562
|
+
name = "windows_i686_msvc"
|
|
1563
|
+
version = "0.52.4"
|
|
1564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1565
|
+
checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
|
|
1566
|
+
|
|
1476
1567
|
[[package]]
|
|
1477
1568
|
name = "windows_x86_64_gnu"
|
|
1478
1569
|
version = "0.48.5"
|
|
1479
1570
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
1571
|
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
1481
1572
|
|
|
1573
|
+
[[package]]
|
|
1574
|
+
name = "windows_x86_64_gnu"
|
|
1575
|
+
version = "0.52.4"
|
|
1576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1577
|
+
checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
|
|
1578
|
+
|
|
1482
1579
|
[[package]]
|
|
1483
1580
|
name = "windows_x86_64_gnullvm"
|
|
1484
1581
|
version = "0.48.5"
|
|
1485
1582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
1583
|
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
1487
1584
|
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "windows_x86_64_gnullvm"
|
|
1587
|
+
version = "0.52.4"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
|
|
1590
|
+
|
|
1488
1591
|
[[package]]
|
|
1489
1592
|
name = "windows_x86_64_msvc"
|
|
1490
1593
|
version = "0.48.5"
|
|
1491
1594
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
1595
|
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
1493
1596
|
|
|
1597
|
+
[[package]]
|
|
1598
|
+
name = "windows_x86_64_msvc"
|
|
1599
|
+
version = "0.52.4"
|
|
1600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1601
|
+
checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
|
|
1602
|
+
|
|
1494
1603
|
[[package]]
|
|
1495
1604
|
name = "xattr"
|
|
1496
|
-
version = "1.
|
|
1605
|
+
version = "1.3.1"
|
|
1497
1606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
-
checksum = "
|
|
1607
|
+
checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
|
|
1499
1608
|
dependencies = [
|
|
1500
1609
|
"libc",
|
|
1610
|
+
"linux-raw-sys",
|
|
1611
|
+
"rustix",
|
|
1501
1612
|
]
|
|
1502
1613
|
|
|
1503
1614
|
[[package]]
|
|
1504
1615
|
name = "yada"
|
|
1505
|
-
version = "0.5.
|
|
1616
|
+
version = "0.5.1"
|
|
1506
1617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
-
checksum = "
|
|
1618
|
+
checksum = "aed111bd9e48a802518765906cbdadf0b45afb72b9c81ab049a3b86252adffdd"
|
|
1508
1619
|
|
|
1509
1620
|
[[package]]
|
|
1510
1621
|
name = "zerocopy"
|