lindera-python 1.3.0__tar.gz → 1.3.2__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.
- {lindera_python-1.3.0 → lindera_python-1.3.2}/Cargo.lock +61 -111
- {lindera_python-1.3.0 → lindera_python-1.3.2}/Cargo.toml +3 -3
- {lindera_python-1.3.0 → lindera_python-1.3.2}/PKG-INFO +2 -2
- lindera_python-1.3.2/poetry.lock +611 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/pyproject.toml +8 -8
- lindera_python-1.3.2/src/dictionary.rs +302 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/src/error.rs +8 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/src/lib.rs +39 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/src/metadata.rs +47 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/src/mode.rs +46 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/src/schema.rs +50 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/src/tokenizer.rs +160 -1
- {lindera_python-1.3.0 → lindera_python-1.3.2}/src/trainer.rs +29 -1
- {lindera_python-1.3.0 → lindera_python-1.3.2}/src/util.rs +37 -0
- lindera_python-1.3.0/poetry.lock +0 -436
- lindera_python-1.3.0/src/dictionary.rs +0 -149
- {lindera_python-1.3.0 → lindera_python-1.3.2}/.github/FUNDING.yml +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/.github/dependabot.yml +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/.github/workflows/periodic.yml +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/.github/workflows/regression.yml +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/.github/workflows/release.yml +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/.gitignore +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/CHANGES.md +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/LICENSE +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/Makefile +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/README.md +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/examples/build_ipadic.py +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/examples/tokenize.py +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/examples/tokenize_with_decompose.py +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/examples/tokenize_with_filters.py +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/examples/tokenize_with_userdict.py +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/examples/train_and_export.py +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/bocchan.txt +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/cc-cedict_metadata.json +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/cc-cedict_simple_userdic.bin +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/cc-cedict_simple_userdic.csv +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/ipadic-neologd_metadata.json +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/ipadic_detailed_userdic.csv +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/ipadic_metadata.json +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/ipadic_mixed_userdic.csv +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/ipadic_simple_userdic.bin +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/ipadic_simple_userdic.csv +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/ipadic_userdic_insufficient_number_of_fields.csv +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/ipadic_userdic_invalid_word_cost.csv +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/ko-dic_metadata.json +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/ko-dic_simple_userdic.bin +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/ko-dic_simple_userdic.csv +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/lindera.yml +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/unidic_metadata.json +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/unidic_simple_userdic.bin +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/resources/unidic_simple_userdic.csv +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/tests/__init__py +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/tests/test_tokenize_ipadic.py +0 -0
- {lindera_python-1.3.0 → lindera_python-1.3.2}/tests/test_trainer.py +0 -0
|
@@ -2,15 +2,6 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
-
[[package]]
|
|
6
|
-
name = "addr2line"
|
|
7
|
-
version = "0.24.2"
|
|
8
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
10
|
-
dependencies = [
|
|
11
|
-
"gimli",
|
|
12
|
-
]
|
|
13
|
-
|
|
14
5
|
[[package]]
|
|
15
6
|
name = "adler2"
|
|
16
7
|
version = "2.0.0"
|
|
@@ -97,21 +88,6 @@ version = "1.1.0"
|
|
|
97
88
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
89
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
99
90
|
|
|
100
|
-
[[package]]
|
|
101
|
-
name = "backtrace"
|
|
102
|
-
version = "0.3.74"
|
|
103
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
-
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
|
105
|
-
dependencies = [
|
|
106
|
-
"addr2line",
|
|
107
|
-
"cfg-if",
|
|
108
|
-
"libc",
|
|
109
|
-
"miniz_oxide",
|
|
110
|
-
"object",
|
|
111
|
-
"rustc-demangle",
|
|
112
|
-
"windows-targets",
|
|
113
|
-
]
|
|
114
|
-
|
|
115
91
|
[[package]]
|
|
116
92
|
name = "base64"
|
|
117
93
|
version = "0.22.1"
|
|
@@ -234,14 +210,14 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
|
234
210
|
|
|
235
211
|
[[package]]
|
|
236
212
|
name = "csv"
|
|
237
|
-
version = "1.
|
|
213
|
+
version = "1.4.0"
|
|
238
214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
-
checksum = "
|
|
215
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
240
216
|
dependencies = [
|
|
241
217
|
"csv-core",
|
|
242
218
|
"itoa",
|
|
243
219
|
"ryu",
|
|
244
|
-
"
|
|
220
|
+
"serde_core",
|
|
245
221
|
]
|
|
246
222
|
|
|
247
223
|
[[package]]
|
|
@@ -451,9 +427,9 @@ dependencies = [
|
|
|
451
427
|
|
|
452
428
|
[[package]]
|
|
453
429
|
name = "flate2"
|
|
454
|
-
version = "1.1.
|
|
430
|
+
version = "1.1.5"
|
|
455
431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
-
checksum = "
|
|
432
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
457
433
|
dependencies = [
|
|
458
434
|
"crc32fast",
|
|
459
435
|
"miniz_oxide",
|
|
@@ -540,12 +516,6 @@ dependencies = [
|
|
|
540
516
|
"wasm-bindgen",
|
|
541
517
|
]
|
|
542
518
|
|
|
543
|
-
[[package]]
|
|
544
|
-
name = "gimli"
|
|
545
|
-
version = "0.31.1"
|
|
546
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
-
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
548
|
-
|
|
549
519
|
[[package]]
|
|
550
520
|
name = "glob"
|
|
551
521
|
version = "0.3.3"
|
|
@@ -876,17 +846,6 @@ dependencies = [
|
|
|
876
846
|
"cfg-if",
|
|
877
847
|
]
|
|
878
848
|
|
|
879
|
-
[[package]]
|
|
880
|
-
name = "io-uring"
|
|
881
|
-
version = "0.7.9"
|
|
882
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
-
checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
|
|
884
|
-
dependencies = [
|
|
885
|
-
"bitflags 2.6.0",
|
|
886
|
-
"cfg-if",
|
|
887
|
-
"libc",
|
|
888
|
-
]
|
|
889
|
-
|
|
890
849
|
[[package]]
|
|
891
850
|
name = "ipnet"
|
|
892
851
|
version = "2.10.1"
|
|
@@ -947,9 +906,9 @@ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
|
|
947
906
|
|
|
948
907
|
[[package]]
|
|
949
908
|
name = "lindera"
|
|
950
|
-
version = "1.4.
|
|
909
|
+
version = "1.4.2"
|
|
951
910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
-
checksum = "
|
|
911
|
+
checksum = "f732f82f832a3f519d1df55786ba8d524da0d6821951cc882279d5c1d5713939"
|
|
953
912
|
dependencies = [
|
|
954
913
|
"anyhow",
|
|
955
914
|
"bincode",
|
|
@@ -967,7 +926,7 @@ dependencies = [
|
|
|
967
926
|
"regex",
|
|
968
927
|
"serde",
|
|
969
928
|
"serde_json",
|
|
970
|
-
"
|
|
929
|
+
"serde_yaml_ng",
|
|
971
930
|
"strum",
|
|
972
931
|
"strum_macros",
|
|
973
932
|
"unicode-blocks",
|
|
@@ -979,9 +938,9 @@ dependencies = [
|
|
|
979
938
|
|
|
980
939
|
[[package]]
|
|
981
940
|
name = "lindera-cc-cedict"
|
|
982
|
-
version = "1.4.
|
|
941
|
+
version = "1.4.2"
|
|
983
942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
-
checksum = "
|
|
943
|
+
checksum = "9568f51b882d041ee7f501e93687501a9082551dfb3770b3c7bf1051ff140250"
|
|
985
944
|
dependencies = [
|
|
986
945
|
"anyhow",
|
|
987
946
|
"bincode",
|
|
@@ -995,9 +954,9 @@ dependencies = [
|
|
|
995
954
|
|
|
996
955
|
[[package]]
|
|
997
956
|
name = "lindera-dictionary"
|
|
998
|
-
version = "1.4.
|
|
957
|
+
version = "1.4.2"
|
|
999
958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
-
checksum = "
|
|
959
|
+
checksum = "a850025f2f622939b12b73758941822a6ece2faf27c00ad8b8e9105d2907c38a"
|
|
1001
960
|
dependencies = [
|
|
1002
961
|
"anyhow",
|
|
1003
962
|
"bincode",
|
|
@@ -1030,9 +989,9 @@ dependencies = [
|
|
|
1030
989
|
|
|
1031
990
|
[[package]]
|
|
1032
991
|
name = "lindera-ipadic"
|
|
1033
|
-
version = "1.4.
|
|
992
|
+
version = "1.4.2"
|
|
1034
993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
-
checksum = "
|
|
994
|
+
checksum = "d32e3168374664b516d5f8999466ed7de7e8aaaeea4f21962ab81955122ce4d0"
|
|
1036
995
|
dependencies = [
|
|
1037
996
|
"anyhow",
|
|
1038
997
|
"bincode",
|
|
@@ -1046,9 +1005,9 @@ dependencies = [
|
|
|
1046
1005
|
|
|
1047
1006
|
[[package]]
|
|
1048
1007
|
name = "lindera-ipadic-neologd"
|
|
1049
|
-
version = "1.4.
|
|
1008
|
+
version = "1.4.2"
|
|
1050
1009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
-
checksum = "
|
|
1010
|
+
checksum = "44dda14f984a9c7550d742cdfa0aae325e150605b40bd67e2cfbc61c79072131"
|
|
1052
1011
|
dependencies = [
|
|
1053
1012
|
"anyhow",
|
|
1054
1013
|
"bincode",
|
|
@@ -1062,9 +1021,9 @@ dependencies = [
|
|
|
1062
1021
|
|
|
1063
1022
|
[[package]]
|
|
1064
1023
|
name = "lindera-ko-dic"
|
|
1065
|
-
version = "1.4.
|
|
1024
|
+
version = "1.4.2"
|
|
1066
1025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
-
checksum = "
|
|
1026
|
+
checksum = "2d48c2c450f314657557db409f2734dc98603a6b6f4f2ad550f29eeaf7b6ed05"
|
|
1068
1027
|
dependencies = [
|
|
1069
1028
|
"anyhow",
|
|
1070
1029
|
"bincode",
|
|
@@ -1078,7 +1037,7 @@ dependencies = [
|
|
|
1078
1037
|
|
|
1079
1038
|
[[package]]
|
|
1080
1039
|
name = "lindera-python"
|
|
1081
|
-
version = "1.3.
|
|
1040
|
+
version = "1.3.2"
|
|
1082
1041
|
dependencies = [
|
|
1083
1042
|
"lindera",
|
|
1084
1043
|
"num_cpus",
|
|
@@ -1089,9 +1048,9 @@ dependencies = [
|
|
|
1089
1048
|
|
|
1090
1049
|
[[package]]
|
|
1091
1050
|
name = "lindera-unidic"
|
|
1092
|
-
version = "1.4.
|
|
1051
|
+
version = "1.4.2"
|
|
1093
1052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
-
checksum = "
|
|
1053
|
+
checksum = "8c179d8b4dcb1fda51b9ba73b4c876469cbe56e35f021e3e58730c3db0476bfe"
|
|
1095
1054
|
dependencies = [
|
|
1096
1055
|
"anyhow",
|
|
1097
1056
|
"bincode",
|
|
@@ -1117,9 +1076,9 @@ checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
|
|
|
1117
1076
|
|
|
1118
1077
|
[[package]]
|
|
1119
1078
|
name = "log"
|
|
1120
|
-
version = "0.4.
|
|
1079
|
+
version = "0.4.29"
|
|
1121
1080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
-
checksum = "
|
|
1081
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1123
1082
|
|
|
1124
1083
|
[[package]]
|
|
1125
1084
|
name = "lru-slab"
|
|
@@ -1141,9 +1100,9 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
|
1141
1100
|
|
|
1142
1101
|
[[package]]
|
|
1143
1102
|
name = "memmap2"
|
|
1144
|
-
version = "0.9.
|
|
1103
|
+
version = "0.9.9"
|
|
1145
1104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
-
checksum = "
|
|
1105
|
+
checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
|
|
1147
1106
|
dependencies = [
|
|
1148
1107
|
"libc",
|
|
1149
1108
|
]
|
|
@@ -1222,15 +1181,6 @@ dependencies = [
|
|
|
1222
1181
|
"libc",
|
|
1223
1182
|
]
|
|
1224
1183
|
|
|
1225
|
-
[[package]]
|
|
1226
|
-
name = "object"
|
|
1227
|
-
version = "0.36.5"
|
|
1228
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1229
|
-
checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
|
|
1230
|
-
dependencies = [
|
|
1231
|
-
"memchr",
|
|
1232
|
-
]
|
|
1233
|
-
|
|
1234
1184
|
[[package]]
|
|
1235
1185
|
name = "once_cell"
|
|
1236
1186
|
version = "1.21.3"
|
|
@@ -1293,9 +1243,9 @@ dependencies = [
|
|
|
1293
1243
|
|
|
1294
1244
|
[[package]]
|
|
1295
1245
|
name = "pyo3"
|
|
1296
|
-
version = "0.
|
|
1246
|
+
version = "0.27.2"
|
|
1297
1247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
-
checksum = "
|
|
1248
|
+
checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
|
|
1299
1249
|
dependencies = [
|
|
1300
1250
|
"indoc",
|
|
1301
1251
|
"libc",
|
|
@@ -1310,18 +1260,18 @@ dependencies = [
|
|
|
1310
1260
|
|
|
1311
1261
|
[[package]]
|
|
1312
1262
|
name = "pyo3-build-config"
|
|
1313
|
-
version = "0.
|
|
1263
|
+
version = "0.27.2"
|
|
1314
1264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1315
|
-
checksum = "
|
|
1265
|
+
checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
|
|
1316
1266
|
dependencies = [
|
|
1317
1267
|
"target-lexicon",
|
|
1318
1268
|
]
|
|
1319
1269
|
|
|
1320
1270
|
[[package]]
|
|
1321
1271
|
name = "pyo3-ffi"
|
|
1322
|
-
version = "0.
|
|
1272
|
+
version = "0.27.2"
|
|
1323
1273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
-
checksum = "
|
|
1274
|
+
checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
|
|
1325
1275
|
dependencies = [
|
|
1326
1276
|
"libc",
|
|
1327
1277
|
"pyo3-build-config",
|
|
@@ -1329,9 +1279,9 @@ dependencies = [
|
|
|
1329
1279
|
|
|
1330
1280
|
[[package]]
|
|
1331
1281
|
name = "pyo3-macros"
|
|
1332
|
-
version = "0.
|
|
1282
|
+
version = "0.27.2"
|
|
1333
1283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
-
checksum = "
|
|
1284
|
+
checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
|
|
1335
1285
|
dependencies = [
|
|
1336
1286
|
"proc-macro2",
|
|
1337
1287
|
"pyo3-macros-backend",
|
|
@@ -1341,9 +1291,9 @@ dependencies = [
|
|
|
1341
1291
|
|
|
1342
1292
|
[[package]]
|
|
1343
1293
|
name = "pyo3-macros-backend"
|
|
1344
|
-
version = "0.
|
|
1294
|
+
version = "0.27.2"
|
|
1345
1295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
-
checksum = "
|
|
1296
|
+
checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
|
|
1347
1297
|
dependencies = [
|
|
1348
1298
|
"heck",
|
|
1349
1299
|
"proc-macro2",
|
|
@@ -1530,9 +1480,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
|
1530
1480
|
|
|
1531
1481
|
[[package]]
|
|
1532
1482
|
name = "reqwest"
|
|
1533
|
-
version = "0.12.
|
|
1483
|
+
version = "0.12.26"
|
|
1534
1484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1535
|
-
checksum = "
|
|
1485
|
+
checksum = "3b4c14b2d9afca6a60277086b0cc6a6ae0b568f6f7916c943a8cdc79f8be240f"
|
|
1536
1486
|
dependencies = [
|
|
1537
1487
|
"base64",
|
|
1538
1488
|
"bytes",
|
|
@@ -1595,12 +1545,6 @@ dependencies = [
|
|
|
1595
1545
|
"hashbrown",
|
|
1596
1546
|
]
|
|
1597
1547
|
|
|
1598
|
-
[[package]]
|
|
1599
|
-
name = "rustc-demangle"
|
|
1600
|
-
version = "0.1.24"
|
|
1601
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1602
|
-
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
1603
|
-
|
|
1604
1548
|
[[package]]
|
|
1605
1549
|
name = "rustc-hash"
|
|
1606
1550
|
version = "2.1.1"
|
|
@@ -1722,10 +1666,10 @@ dependencies = [
|
|
|
1722
1666
|
]
|
|
1723
1667
|
|
|
1724
1668
|
[[package]]
|
|
1725
|
-
name = "
|
|
1726
|
-
version = "0.
|
|
1669
|
+
name = "serde_yaml_ng"
|
|
1670
|
+
version = "0.10.0"
|
|
1727
1671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1728
|
-
checksum = "
|
|
1672
|
+
checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f"
|
|
1729
1673
|
dependencies = [
|
|
1730
1674
|
"indexmap",
|
|
1731
1675
|
"itoa",
|
|
@@ -1918,7 +1862,7 @@ version = "1.2.0"
|
|
|
1918
1862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1919
1863
|
checksum = "2111ef44dae28680ae9752bb89409e7310ca33a8c621ebe7b106cf5c928b3ac0"
|
|
1920
1864
|
dependencies = [
|
|
1921
|
-
"windows-sys 0.
|
|
1865
|
+
"windows-sys 0.61.2",
|
|
1922
1866
|
]
|
|
1923
1867
|
|
|
1924
1868
|
[[package]]
|
|
@@ -2028,27 +1972,24 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
|
2028
1972
|
|
|
2029
1973
|
[[package]]
|
|
2030
1974
|
name = "tokio"
|
|
2031
|
-
version = "1.
|
|
1975
|
+
version = "1.48.0"
|
|
2032
1976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2033
|
-
checksum = "
|
|
1977
|
+
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
2034
1978
|
dependencies = [
|
|
2035
|
-
"backtrace",
|
|
2036
1979
|
"bytes",
|
|
2037
|
-
"io-uring",
|
|
2038
1980
|
"libc",
|
|
2039
1981
|
"mio",
|
|
2040
1982
|
"pin-project-lite",
|
|
2041
|
-
"slab",
|
|
2042
1983
|
"socket2 0.6.0",
|
|
2043
1984
|
"tokio-macros",
|
|
2044
|
-
"windows-sys 0.
|
|
1985
|
+
"windows-sys 0.61.2",
|
|
2045
1986
|
]
|
|
2046
1987
|
|
|
2047
1988
|
[[package]]
|
|
2048
1989
|
name = "tokio-macros"
|
|
2049
|
-
version = "2.
|
|
1990
|
+
version = "2.6.0"
|
|
2050
1991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
-
checksum = "
|
|
1992
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
2052
1993
|
dependencies = [
|
|
2053
1994
|
"proc-macro2",
|
|
2054
1995
|
"quote",
|
|
@@ -2083,9 +2024,9 @@ dependencies = [
|
|
|
2083
2024
|
|
|
2084
2025
|
[[package]]
|
|
2085
2026
|
name = "tower-http"
|
|
2086
|
-
version = "0.6.
|
|
2027
|
+
version = "0.6.8"
|
|
2087
2028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2088
|
-
checksum = "
|
|
2029
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
2089
2030
|
dependencies = [
|
|
2090
2031
|
"bitflags 2.6.0",
|
|
2091
2032
|
"bytes",
|
|
@@ -2150,9 +2091,9 @@ checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
|
|
|
2150
2091
|
|
|
2151
2092
|
[[package]]
|
|
2152
2093
|
name = "unicode-normalization"
|
|
2153
|
-
version = "0.1.
|
|
2094
|
+
version = "0.1.25"
|
|
2154
2095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2155
|
-
checksum = "
|
|
2096
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
2156
2097
|
dependencies = [
|
|
2157
2098
|
"tinyvec",
|
|
2158
2099
|
]
|
|
@@ -2387,9 +2328,9 @@ dependencies = [
|
|
|
2387
2328
|
|
|
2388
2329
|
[[package]]
|
|
2389
2330
|
name = "windows-link"
|
|
2390
|
-
version = "0.2.
|
|
2331
|
+
version = "0.2.1"
|
|
2391
2332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2392
|
-
checksum = "
|
|
2333
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2393
2334
|
|
|
2394
2335
|
[[package]]
|
|
2395
2336
|
name = "windows-result"
|
|
@@ -2442,6 +2383,15 @@ dependencies = [
|
|
|
2442
2383
|
"windows-targets",
|
|
2443
2384
|
]
|
|
2444
2385
|
|
|
2386
|
+
[[package]]
|
|
2387
|
+
name = "windows-sys"
|
|
2388
|
+
version = "0.61.2"
|
|
2389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2390
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2391
|
+
dependencies = [
|
|
2392
|
+
"windows-link",
|
|
2393
|
+
]
|
|
2394
|
+
|
|
2445
2395
|
[[package]]
|
|
2446
2396
|
name = "windows-targets"
|
|
2447
2397
|
version = "0.52.6"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "lindera-python"
|
|
3
|
-
version = "1.3.
|
|
3
|
+
version = "1.3.2"
|
|
4
4
|
edition = "2024"
|
|
5
5
|
description = "Python binding for Lindera."
|
|
6
6
|
documentation = "https://docs.rs/lindera-python"
|
|
@@ -39,9 +39,9 @@ train = ["lindera/train"] # Enable training functionality
|
|
|
39
39
|
default = ["train"] # No directories included
|
|
40
40
|
|
|
41
41
|
[dependencies]
|
|
42
|
-
pyo3 = { version = "0.
|
|
42
|
+
pyo3 = { version = "0.27.2", features = ["extension-module"] }
|
|
43
43
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
44
44
|
serde_json = "1.0.145"
|
|
45
45
|
num_cpus = "1.17.0"
|
|
46
46
|
|
|
47
|
-
lindera = "1.4.
|
|
47
|
+
lindera = "1.4.2"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lindera-python
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.2
|
|
4
4
|
Classifier: Programming Language :: Python :: 3
|
|
5
5
|
Classifier: Programming Language :: Python :: 3.8
|
|
6
6
|
Classifier: Programming Language :: Python :: 3.9
|
|
@@ -16,7 +16,7 @@ Keywords: morphological,analysis,library,python
|
|
|
16
16
|
Home-Page: https://github.com/lindera/lindera-python
|
|
17
17
|
Author-email: Minoru Osuka <minoru.osuka@gmail.com>
|
|
18
18
|
License: MIT
|
|
19
|
-
Requires-Python: >=3.
|
|
19
|
+
Requires-Python: >=3.10, <3.15
|
|
20
20
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
21
21
|
|
|
22
22
|
# lindera-python
|