lindera-python 1.3.2__tar.gz → 1.4.0__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.
Files changed (52) hide show
  1. {lindera_python-1.3.2 → lindera_python-1.4.0}/.github/workflows/periodic.yml +2 -2
  2. {lindera_python-1.3.2 → lindera_python-1.4.0}/.github/workflows/regression.yml +2 -2
  3. {lindera_python-1.3.2 → lindera_python-1.4.0}/.github/workflows/release.yml +15 -15
  4. {lindera_python-1.3.2 → lindera_python-1.4.0}/Cargo.lock +159 -27
  5. {lindera_python-1.3.2 → lindera_python-1.4.0}/Cargo.toml +3 -3
  6. {lindera_python-1.3.2 → lindera_python-1.4.0}/PKG-INFO +1 -1
  7. {lindera_python-1.3.2 → lindera_python-1.4.0}/poetry.lock +77 -77
  8. {lindera_python-1.3.2 → lindera_python-1.4.0}/pyproject.toml +1 -1
  9. {lindera_python-1.3.2 → lindera_python-1.4.0}/.github/FUNDING.yml +0 -0
  10. {lindera_python-1.3.2 → lindera_python-1.4.0}/.github/dependabot.yml +0 -0
  11. {lindera_python-1.3.2 → lindera_python-1.4.0}/.gitignore +0 -0
  12. {lindera_python-1.3.2 → lindera_python-1.4.0}/CHANGES.md +0 -0
  13. {lindera_python-1.3.2 → lindera_python-1.4.0}/LICENSE +0 -0
  14. {lindera_python-1.3.2 → lindera_python-1.4.0}/Makefile +0 -0
  15. {lindera_python-1.3.2 → lindera_python-1.4.0}/README.md +0 -0
  16. {lindera_python-1.3.2 → lindera_python-1.4.0}/examples/build_ipadic.py +0 -0
  17. {lindera_python-1.3.2 → lindera_python-1.4.0}/examples/tokenize.py +0 -0
  18. {lindera_python-1.3.2 → lindera_python-1.4.0}/examples/tokenize_with_decompose.py +0 -0
  19. {lindera_python-1.3.2 → lindera_python-1.4.0}/examples/tokenize_with_filters.py +0 -0
  20. {lindera_python-1.3.2 → lindera_python-1.4.0}/examples/tokenize_with_userdict.py +0 -0
  21. {lindera_python-1.3.2 → lindera_python-1.4.0}/examples/train_and_export.py +0 -0
  22. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/bocchan.txt +0 -0
  23. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/cc-cedict_metadata.json +0 -0
  24. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/cc-cedict_simple_userdic.bin +0 -0
  25. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/cc-cedict_simple_userdic.csv +0 -0
  26. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/ipadic-neologd_metadata.json +0 -0
  27. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/ipadic_detailed_userdic.csv +0 -0
  28. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/ipadic_metadata.json +0 -0
  29. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/ipadic_mixed_userdic.csv +0 -0
  30. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/ipadic_simple_userdic.bin +0 -0
  31. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/ipadic_simple_userdic.csv +0 -0
  32. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/ipadic_userdic_insufficient_number_of_fields.csv +0 -0
  33. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/ipadic_userdic_invalid_word_cost.csv +0 -0
  34. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/ko-dic_metadata.json +0 -0
  35. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/ko-dic_simple_userdic.bin +0 -0
  36. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/ko-dic_simple_userdic.csv +0 -0
  37. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/lindera.yml +0 -0
  38. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/unidic_metadata.json +0 -0
  39. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/unidic_simple_userdic.bin +0 -0
  40. {lindera_python-1.3.2 → lindera_python-1.4.0}/resources/unidic_simple_userdic.csv +0 -0
  41. {lindera_python-1.3.2 → lindera_python-1.4.0}/src/dictionary.rs +0 -0
  42. {lindera_python-1.3.2 → lindera_python-1.4.0}/src/error.rs +0 -0
  43. {lindera_python-1.3.2 → lindera_python-1.4.0}/src/lib.rs +0 -0
  44. {lindera_python-1.3.2 → lindera_python-1.4.0}/src/metadata.rs +0 -0
  45. {lindera_python-1.3.2 → lindera_python-1.4.0}/src/mode.rs +0 -0
  46. {lindera_python-1.3.2 → lindera_python-1.4.0}/src/schema.rs +0 -0
  47. {lindera_python-1.3.2 → lindera_python-1.4.0}/src/tokenizer.rs +0 -0
  48. {lindera_python-1.3.2 → lindera_python-1.4.0}/src/trainer.rs +0 -0
  49. {lindera_python-1.3.2 → lindera_python-1.4.0}/src/util.rs +0 -0
  50. {lindera_python-1.3.2 → lindera_python-1.4.0}/tests/__init__py +0 -0
  51. {lindera_python-1.3.2 → lindera_python-1.4.0}/tests/test_tokenize_ipadic.py +0 -0
  52. {lindera_python-1.3.2 → lindera_python-1.4.0}/tests/test_trainer.py +0 -0
@@ -17,7 +17,7 @@ jobs:
17
17
  runs-on: ${{ matrix.platform.runner }}
18
18
  steps:
19
19
  - name: Run checkout
20
- uses: actions/checkout@v5
20
+ uses: actions/checkout@v6
21
21
 
22
22
  - name: Install toolchain
23
23
  uses: dtolnay/rust-toolchain@v1
@@ -47,7 +47,7 @@ jobs:
47
47
  runs-on: ${{ matrix.platform.runner }}
48
48
  steps:
49
49
  - name: Run checkout
50
- uses: actions/checkout@v5
50
+ uses: actions/checkout@v6
51
51
 
52
52
  - name: Install toolchain
53
53
  uses: dtolnay/rust-toolchain@v1
@@ -20,7 +20,7 @@ jobs:
20
20
  runs-on: ${{ matrix.platform.runner }}
21
21
  steps:
22
22
  - name: Run checkout
23
- uses: actions/checkout@v5
23
+ uses: actions/checkout@v6
24
24
 
25
25
  - name: Install toolchain
26
26
  uses: dtolnay/rust-toolchain@v1
@@ -50,7 +50,7 @@ jobs:
50
50
  runs-on: ${{ matrix.platform.runner }}
51
51
  steps:
52
52
  - name: Run checkout
53
- uses: actions/checkout@v5
53
+ uses: actions/checkout@v6
54
54
 
55
55
  - name: Install toolchain
56
56
  uses: dtolnay/rust-toolchain@v1
@@ -22,7 +22,7 @@ jobs:
22
22
  runs-on: ${{ matrix.platform.runner }}
23
23
  steps:
24
24
  - name: Run checkout
25
- uses: actions/checkout@v5
25
+ uses: actions/checkout@v6
26
26
 
27
27
  - name: Install toolchain
28
28
  uses: dtolnay/rust-toolchain@v1
@@ -57,7 +57,7 @@ jobs:
57
57
  runs-on: ${{ matrix.platform.runner }}
58
58
  steps:
59
59
  - name: Run checkout
60
- uses: actions/checkout@v5
60
+ uses: actions/checkout@v6
61
61
 
62
62
  - name: Install toolchain
63
63
  uses: dtolnay/rust-toolchain@v1
@@ -101,7 +101,7 @@ jobs:
101
101
  runs-on: ${{ matrix.platform.runner }}
102
102
  steps:
103
103
  - name: Run checkout
104
- uses: actions/checkout@v5
104
+ uses: actions/checkout@v6
105
105
 
106
106
  - name: Setup Python
107
107
  uses: actions/setup-python@v6
@@ -126,7 +126,7 @@ jobs:
126
126
  before-script-linux: "yum install openssl-devel devtoolset-10-libatomic-devel perl-IPC-Cmd -y"
127
127
 
128
128
  - name: Upload wheels
129
- uses: actions/upload-artifact@v4
129
+ uses: actions/upload-artifact@v6
130
130
  with:
131
131
  name: wheels-${{ matrix.features.package_name }}-linux-${{ matrix.platform.target }}-${{ github.ref_name }}
132
132
  path: dist
@@ -163,7 +163,7 @@ jobs:
163
163
  runs-on: ${{ matrix.platform.runner }}
164
164
  steps:
165
165
  - name: Run checkout
166
- uses: actions/checkout@v5
166
+ uses: actions/checkout@v6
167
167
 
168
168
  - name: Setup Python
169
169
  uses: actions/setup-python@v6
@@ -188,7 +188,7 @@ jobs:
188
188
  before-script-linux: "apt-get update && apt-get install libssl-dev pkg-config -y"
189
189
 
190
190
  - name: Upload wheels
191
- uses: actions/upload-artifact@v4
191
+ uses: actions/upload-artifact@v6
192
192
  with:
193
193
  name: wheels-${{ matrix.features.package_name }}-linux-${{ matrix.platform.target }}-${{ github.ref_name }}
194
194
  path: dist
@@ -225,7 +225,7 @@ jobs:
225
225
  runs-on: ${{ matrix.platform.runner }}
226
226
  steps:
227
227
  - name: Run checkout
228
- uses: actions/checkout@v5
228
+ uses: actions/checkout@v6
229
229
 
230
230
  - name: Setup Python
231
231
  uses: actions/setup-python@v6
@@ -252,7 +252,7 @@ jobs:
252
252
  sccache: "true"
253
253
 
254
254
  - name: Upload wheels
255
- uses: actions/upload-artifact@v4
255
+ uses: actions/upload-artifact@v6
256
256
  with:
257
257
  name: wheels-${{ matrix.features.package_name }}-windows-${{ matrix.platform.target }}-${{ github.ref_name }}
258
258
  path: dist
@@ -291,7 +291,7 @@ jobs:
291
291
  runs-on: ${{ matrix.platform.runner }}
292
292
  steps:
293
293
  - name: Run checkout
294
- uses: actions/checkout@v5
294
+ uses: actions/checkout@v6
295
295
 
296
296
  - name: Setup Python
297
297
  uses: actions/setup-python@v6
@@ -314,7 +314,7 @@ jobs:
314
314
  sccache: "true"
315
315
 
316
316
  - name: Upload wheels
317
- uses: actions/upload-artifact@v4
317
+ uses: actions/upload-artifact@v6
318
318
  with:
319
319
  name: wheels-${{ matrix.features.package_name }}-macos-${{ matrix.platform.target }}-${{ github.ref_name }}
320
320
  path: dist
@@ -323,7 +323,7 @@ jobs:
323
323
  runs-on: ubuntu-latest
324
324
  steps:
325
325
  - name: Run checkout
326
- uses: actions/checkout@v5
326
+ uses: actions/checkout@v6
327
327
 
328
328
  - name: Build sdist
329
329
  uses: PyO3/maturin-action@v1
@@ -332,7 +332,7 @@ jobs:
332
332
  args: --out dist
333
333
 
334
334
  - name: Upload sdist
335
- uses: actions/upload-artifact@v4
335
+ uses: actions/upload-artifact@v6
336
336
  with:
337
337
  name: wheels-sdist
338
338
  path: dist
@@ -352,7 +352,7 @@ jobs:
352
352
  attestations: write
353
353
  steps:
354
354
  - name: Download build artifacts
355
- uses: actions/download-artifact@v5
355
+ uses: actions/download-artifact@v7
356
356
 
357
357
  - name: Generate artifact attestation
358
358
  uses: actions/attest-build-provenance@v3
@@ -381,7 +381,7 @@ jobs:
381
381
  id-token: write
382
382
  steps:
383
383
  - name: Download build artifacts
384
- uses: actions/download-artifact@v5
384
+ uses: actions/download-artifact@v7
385
385
 
386
386
  - name: Publish to PyPI
387
387
  uses: PyO3/maturin-action@v1
@@ -403,7 +403,7 @@ jobs:
403
403
  runs-on: ${{ matrix.platform.runner }}
404
404
  steps:
405
405
  - name: Checkout
406
- uses: actions/checkout@v5
406
+ uses: actions/checkout@v6
407
407
 
408
408
  - name: Install toolchain
409
409
  uses: dtolnay/rust-toolchain@v1
@@ -132,6 +132,29 @@ version = "3.16.0"
132
132
  source = "registry+https://github.com/rust-lang/crates.io-index"
133
133
  checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
134
134
 
135
+ [[package]]
136
+ name = "bytecheck"
137
+ version = "0.8.2"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "0caa33a2c0edca0419d15ac723dff03f1956f7978329b1e3b5fdaaaed9d3ca8b"
140
+ dependencies = [
141
+ "bytecheck_derive",
142
+ "ptr_meta",
143
+ "rancor",
144
+ "simdutf8",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "bytecheck_derive"
149
+ version = "0.8.2"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "89385e82b5d1821d2219e0b095efa2cc1f246cbf99080f3be46a1a85c0d392d9"
152
+ dependencies = [
153
+ "proc-macro2",
154
+ "quote",
155
+ "syn",
156
+ ]
157
+
135
158
  [[package]]
136
159
  name = "byteorder"
137
160
  version = "1.5.0"
@@ -906,12 +929,11 @@ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
906
929
 
907
930
  [[package]]
908
931
  name = "lindera"
909
- version = "1.4.2"
932
+ version = "1.5.0"
910
933
  source = "registry+https://github.com/rust-lang/crates.io-index"
911
- checksum = "f732f82f832a3f519d1df55786ba8d524da0d6821951cc882279d5c1d5713939"
934
+ checksum = "1c5f24213f764c5c7ecbf53ec8c90266f5603ae59e2862c470b2b51174558c23"
912
935
  dependencies = [
913
936
  "anyhow",
914
- "bincode",
915
937
  "byteorder",
916
938
  "csv",
917
939
  "kanaria",
@@ -938,28 +960,27 @@ dependencies = [
938
960
 
939
961
  [[package]]
940
962
  name = "lindera-cc-cedict"
941
- version = "1.4.2"
963
+ version = "1.5.0"
942
964
  source = "registry+https://github.com/rust-lang/crates.io-index"
943
- checksum = "9568f51b882d041ee7f501e93687501a9082551dfb3770b3c7bf1051ff140250"
965
+ checksum = "ab8c0e22439182088b2d1f6fcc3b9a905a70df60122262a1354fd4d771d44589"
944
966
  dependencies = [
945
967
  "anyhow",
946
- "bincode",
947
968
  "byteorder",
948
969
  "csv",
949
970
  "lindera-dictionary",
950
971
  "once_cell",
972
+ "rkyv",
951
973
  "serde_json",
952
974
  "tokio",
953
975
  ]
954
976
 
955
977
  [[package]]
956
978
  name = "lindera-dictionary"
957
- version = "1.4.2"
979
+ version = "1.5.0"
958
980
  source = "registry+https://github.com/rust-lang/crates.io-index"
959
- checksum = "a850025f2f622939b12b73758941822a6ece2faf27c00ad8b8e9105d2907c38a"
981
+ checksum = "ec2ba2c2c0d7d68442e7c8accbac5474d4d90c1c8dce3d58b1a9ef7d808c5396"
960
982
  dependencies = [
961
983
  "anyhow",
962
- "bincode",
963
984
  "byteorder",
964
985
  "csv",
965
986
  "derive_builder",
@@ -976,6 +997,7 @@ dependencies = [
976
997
  "rand 0.9.2",
977
998
  "regex",
978
999
  "reqwest",
1000
+ "rkyv",
979
1001
  "rucrf",
980
1002
  "serde",
981
1003
  "serde_json",
@@ -989,55 +1011,55 @@ dependencies = [
989
1011
 
990
1012
  [[package]]
991
1013
  name = "lindera-ipadic"
992
- version = "1.4.2"
1014
+ version = "1.5.0"
993
1015
  source = "registry+https://github.com/rust-lang/crates.io-index"
994
- checksum = "d32e3168374664b516d5f8999466ed7de7e8aaaeea4f21962ab81955122ce4d0"
1016
+ checksum = "2fe46f27c3f46ff0a7aadb3ba643e2f47312017df211d36a6287535e0656c075"
995
1017
  dependencies = [
996
1018
  "anyhow",
997
- "bincode",
998
1019
  "byteorder",
999
1020
  "csv",
1000
1021
  "lindera-dictionary",
1001
1022
  "once_cell",
1023
+ "rkyv",
1002
1024
  "serde_json",
1003
1025
  "tokio",
1004
1026
  ]
1005
1027
 
1006
1028
  [[package]]
1007
1029
  name = "lindera-ipadic-neologd"
1008
- version = "1.4.2"
1030
+ version = "1.5.0"
1009
1031
  source = "registry+https://github.com/rust-lang/crates.io-index"
1010
- checksum = "44dda14f984a9c7550d742cdfa0aae325e150605b40bd67e2cfbc61c79072131"
1032
+ checksum = "904b749937b5669be8c2a7188306d7523fa1e9fcb893323984244edb0e0fd053"
1011
1033
  dependencies = [
1012
1034
  "anyhow",
1013
- "bincode",
1014
1035
  "byteorder",
1015
1036
  "csv",
1016
1037
  "lindera-dictionary",
1017
1038
  "once_cell",
1039
+ "rkyv",
1018
1040
  "serde_json",
1019
1041
  "tokio",
1020
1042
  ]
1021
1043
 
1022
1044
  [[package]]
1023
1045
  name = "lindera-ko-dic"
1024
- version = "1.4.2"
1046
+ version = "1.5.0"
1025
1047
  source = "registry+https://github.com/rust-lang/crates.io-index"
1026
- checksum = "2d48c2c450f314657557db409f2734dc98603a6b6f4f2ad550f29eeaf7b6ed05"
1048
+ checksum = "a2e10b6d58db246ab39f87ac173382b591d39e8ef04dbf50798d8344aa8cceca"
1027
1049
  dependencies = [
1028
1050
  "anyhow",
1029
- "bincode",
1030
1051
  "byteorder",
1031
1052
  "csv",
1032
1053
  "lindera-dictionary",
1033
1054
  "once_cell",
1055
+ "rkyv",
1034
1056
  "serde_json",
1035
1057
  "tokio",
1036
1058
  ]
1037
1059
 
1038
1060
  [[package]]
1039
1061
  name = "lindera-python"
1040
- version = "1.3.2"
1062
+ version = "1.4.0"
1041
1063
  dependencies = [
1042
1064
  "lindera",
1043
1065
  "num_cpus",
@@ -1048,16 +1070,16 @@ dependencies = [
1048
1070
 
1049
1071
  [[package]]
1050
1072
  name = "lindera-unidic"
1051
- version = "1.4.2"
1073
+ version = "1.5.0"
1052
1074
  source = "registry+https://github.com/rust-lang/crates.io-index"
1053
- checksum = "8c179d8b4dcb1fda51b9ba73b4c876469cbe56e35f021e3e58730c3db0476bfe"
1075
+ checksum = "7e350811efdcca8df7d29edc2f563aea18ab644ec45cbcfcd2da4de81d413226"
1054
1076
  dependencies = [
1055
1077
  "anyhow",
1056
- "bincode",
1057
1078
  "byteorder",
1058
1079
  "csv",
1059
1080
  "lindera-dictionary",
1060
1081
  "once_cell",
1082
+ "rkyv",
1061
1083
  "serde_json",
1062
1084
  "tokio",
1063
1085
  ]
@@ -1138,6 +1160,26 @@ dependencies = [
1138
1160
  "windows-sys 0.52.0",
1139
1161
  ]
1140
1162
 
1163
+ [[package]]
1164
+ name = "munge"
1165
+ version = "0.4.7"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "5e17401f259eba956ca16491461b6e8f72913a0a114e39736ce404410f915a0c"
1168
+ dependencies = [
1169
+ "munge_macro",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "munge_macro"
1174
+ version = "0.4.7"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "4568f25ccbd45ab5d5603dc34318c1ec56b117531781260002151b8530a9f931"
1177
+ dependencies = [
1178
+ "proc-macro2",
1179
+ "quote",
1180
+ "syn",
1181
+ ]
1182
+
1141
1183
  [[package]]
1142
1184
  name = "num-complex"
1143
1185
  version = "0.4.6"
@@ -1241,6 +1283,26 @@ dependencies = [
1241
1283
  "unicode-ident",
1242
1284
  ]
1243
1285
 
1286
+ [[package]]
1287
+ name = "ptr_meta"
1288
+ version = "0.3.1"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "0b9a0cf95a1196af61d4f1cbdab967179516d9a4a4312af1f31948f8f6224a79"
1291
+ dependencies = [
1292
+ "ptr_meta_derive",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "ptr_meta_derive"
1297
+ version = "0.3.1"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "7347867d0a7e1208d93b46767be83e2b8f978c3dad35f775ac8d8847551d6fe1"
1300
+ dependencies = [
1301
+ "proc-macro2",
1302
+ "quote",
1303
+ "syn",
1304
+ ]
1305
+
1244
1306
  [[package]]
1245
1307
  name = "pyo3"
1246
1308
  version = "0.27.2"
@@ -1372,6 +1434,15 @@ version = "5.2.0"
1372
1434
  source = "registry+https://github.com/rust-lang/crates.io-index"
1373
1435
  checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
1374
1436
 
1437
+ [[package]]
1438
+ name = "rancor"
1439
+ version = "0.1.1"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "a063ea72381527c2a0561da9c80000ef822bdd7c3241b1cc1b12100e3df081ee"
1442
+ dependencies = [
1443
+ "ptr_meta",
1444
+ ]
1445
+
1375
1446
  [[package]]
1376
1447
  name = "rand"
1377
1448
  version = "0.8.5"
@@ -1478,11 +1549,20 @@ version = "0.8.5"
1478
1549
  source = "registry+https://github.com/rust-lang/crates.io-index"
1479
1550
  checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1480
1551
 
1552
+ [[package]]
1553
+ name = "rend"
1554
+ version = "0.5.3"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "cadadef317c2f20755a64d7fdc48f9e7178ee6b0e1f7fce33fa60f1d68a276e6"
1557
+ dependencies = [
1558
+ "bytecheck",
1559
+ ]
1560
+
1481
1561
  [[package]]
1482
1562
  name = "reqwest"
1483
- version = "0.12.26"
1563
+ version = "0.12.28"
1484
1564
  source = "registry+https://github.com/rust-lang/crates.io-index"
1485
- checksum = "3b4c14b2d9afca6a60277086b0cc6a6ae0b568f6f7916c943a8cdc79f8be240f"
1565
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1486
1566
  dependencies = [
1487
1567
  "base64",
1488
1568
  "bytes",
@@ -1531,6 +1611,36 @@ dependencies = [
1531
1611
  "windows-sys 0.52.0",
1532
1612
  ]
1533
1613
 
1614
+ [[package]]
1615
+ name = "rkyv"
1616
+ version = "0.8.12"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "35a640b26f007713818e9a9b65d34da1cf58538207b052916a83d80e43f3ffa4"
1619
+ dependencies = [
1620
+ "bytecheck",
1621
+ "bytes",
1622
+ "hashbrown",
1623
+ "indexmap",
1624
+ "munge",
1625
+ "ptr_meta",
1626
+ "rancor",
1627
+ "rend",
1628
+ "rkyv_derive",
1629
+ "tinyvec",
1630
+ "uuid",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "rkyv_derive"
1635
+ version = "0.8.12"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "bd83f5f173ff41e00337d97f6572e416d022ef8a19f371817259ae960324c482"
1638
+ dependencies = [
1639
+ "proc-macro2",
1640
+ "quote",
1641
+ "syn",
1642
+ ]
1643
+
1534
1644
  [[package]]
1535
1645
  name = "rucrf"
1536
1646
  version = "0.3.3"
@@ -1642,15 +1752,15 @@ dependencies = [
1642
1752
 
1643
1753
  [[package]]
1644
1754
  name = "serde_json"
1645
- version = "1.0.145"
1755
+ version = "1.0.148"
1646
1756
  source = "registry+https://github.com/rust-lang/crates.io-index"
1647
- checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1757
+ checksum = "3084b546a1dd6289475996f182a22aba973866ea8e8b02c51d9f46b1336a22da"
1648
1758
  dependencies = [
1649
1759
  "itoa",
1650
1760
  "memchr",
1651
- "ryu",
1652
1761
  "serde",
1653
1762
  "serde_core",
1763
+ "zmij",
1654
1764
  ]
1655
1765
 
1656
1766
  [[package]]
@@ -1690,6 +1800,12 @@ version = "0.3.7"
1690
1800
  source = "registry+https://github.com/rust-lang/crates.io-index"
1691
1801
  checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
1692
1802
 
1803
+ [[package]]
1804
+ name = "simdutf8"
1805
+ version = "0.1.5"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1808
+
1693
1809
  [[package]]
1694
1810
  name = "slab"
1695
1811
  version = "0.4.9"
@@ -2152,6 +2268,16 @@ version = "1.0.4"
2152
2268
  source = "registry+https://github.com/rust-lang/crates.io-index"
2153
2269
  checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2154
2270
 
2271
+ [[package]]
2272
+ name = "uuid"
2273
+ version = "1.19.0"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
2276
+ dependencies = [
2277
+ "js-sys",
2278
+ "wasm-bindgen",
2279
+ ]
2280
+
2155
2281
  [[package]]
2156
2282
  name = "virtue"
2157
2283
  version = "0.0.18"
@@ -2628,3 +2754,9 @@ dependencies = [
2628
2754
  "quote",
2629
2755
  "syn",
2630
2756
  ]
2757
+
2758
+ [[package]]
2759
+ name = "zmij"
2760
+ version = "1.0.3"
2761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2762
+ checksum = "e9747e91771f56fd7893e1164abd78febd14a670ceec257caad15e051de35f06"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "lindera-python"
3
- version = "1.3.2"
3
+ version = "1.4.0"
4
4
  edition = "2024"
5
5
  description = "Python binding for Lindera."
6
6
  documentation = "https://docs.rs/lindera-python"
@@ -41,7 +41,7 @@ default = ["train"] # No directories included
41
41
  [dependencies]
42
42
  pyo3 = { version = "0.27.2", features = ["extension-module"] }
43
43
  serde = { version = "1.0.228", features = ["derive"] }
44
- serde_json = "1.0.145"
44
+ serde_json = "1.0.148"
45
45
  num_cpus = "1.17.0"
46
46
 
47
- lindera = "1.4.2"
47
+ lindera = "1.5.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lindera-python
3
- Version: 1.3.2
3
+ Version: 1.4.0
4
4
  Classifier: Programming Language :: Python :: 3
5
5
  Classifier: Programming Language :: Python :: 3.8
6
6
  Classifier: Programming Language :: Python :: 3.9
@@ -181,89 +181,89 @@ plugins = ["setuptools"]
181
181
 
182
182
  [[package]]
183
183
  name = "librt"
184
- version = "0.7.4"
184
+ version = "0.7.5"
185
185
  description = "Mypyc runtime library"
186
186
  optional = false
187
187
  python-versions = ">=3.9"
188
188
  groups = ["dev"]
189
189
  markers = "platform_python_implementation != \"PyPy\""
190
190
  files = [
191
- {file = "librt-0.7.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dc300cb5a5a01947b1ee8099233156fdccd5001739e5f596ecfbc0dab07b5a3b"},
192
- {file = "librt-0.7.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ee8d3323d921e0f6919918a97f9b5445a7dfe647270b2629ec1008aa676c0bc0"},
193
- {file = "librt-0.7.4-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:95cb80854a355b284c55f79674f6187cc9574df4dc362524e0cce98c89ee8331"},
194
- {file = "librt-0.7.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3ca1caedf8331d8ad6027f93b52d68ed8f8009f5c420c246a46fe9d3be06be0f"},
195
- {file = "librt-0.7.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c2a6f1236151e6fe1da289351b5b5bce49651c91554ecc7b70a947bced6fe212"},
196
- {file = "librt-0.7.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:7766b57aeebaf3f1dac14fdd4a75c9a61f2ed56d8ebeefe4189db1cb9d2a3783"},
197
- {file = "librt-0.7.4-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:1c4c89fb01157dd0a3bfe9e75cd6253b0a1678922befcd664eca0772a4c6c979"},
198
- {file = "librt-0.7.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f7fa8beef580091c02b4fd26542de046b2abfe0aaefa02e8bcf68acb7618f2b3"},
199
- {file = "librt-0.7.4-cp310-cp310-win32.whl", hash = "sha256:543c42fa242faae0466fe72d297976f3c710a357a219b1efde3a0539a68a6997"},
200
- {file = "librt-0.7.4-cp310-cp310-win_amd64.whl", hash = "sha256:25cc40d8eb63f0a7ea4c8f49f524989b9df901969cb860a2bc0e4bad4b8cb8a8"},
201
- {file = "librt-0.7.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3485b9bb7dfa66167d5500ffdafdc35415b45f0da06c75eb7df131f3357b174a"},
202
- {file = "librt-0.7.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:188b4b1a770f7f95ea035d5bbb9d7367248fc9d12321deef78a269ebf46a5729"},
203
- {file = "librt-0.7.4-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:1b668b1c840183e4e38ed5a99f62fac44c3a3eef16870f7f17cfdfb8b47550ed"},
204
- {file = "librt-0.7.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0e8f864b521f6cfedb314d171630f827efee08f5c3462bcbc2244ab8e1768cd6"},
205
- {file = "librt-0.7.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4df7c9def4fc619a9c2ab402d73a0c5b53899abe090e0100323b13ccb5a3dd82"},
206
- {file = "librt-0.7.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:f79bc3595b6ed159a1bf0cdc70ed6ebec393a874565cab7088a219cca14da727"},
207
- {file = "librt-0.7.4-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:77772a4b8b5f77d47d883846928c36d730b6e612a6388c74cba33ad9eb149c11"},
208
- {file = "librt-0.7.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:064a286e6ab0b4c900e228ab4fa9cb3811b4b83d3e0cc5cd816b2d0f548cb61c"},
209
- {file = "librt-0.7.4-cp311-cp311-win32.whl", hash = "sha256:42da201c47c77b6cc91fc17e0e2b330154428d35d6024f3278aa2683e7e2daf2"},
210
- {file = "librt-0.7.4-cp311-cp311-win_amd64.whl", hash = "sha256:d31acb5886c16ae1711741f22504195af46edec8315fe69b77e477682a87a83e"},
211
- {file = "librt-0.7.4-cp311-cp311-win_arm64.whl", hash = "sha256:114722f35093da080a333b3834fff04ef43147577ed99dd4db574b03a5f7d170"},
212
- {file = "librt-0.7.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7dd3b5c37e0fb6666c27cf4e2c88ae43da904f2155c4cfc1e5a2fdce3b9fcf92"},
213
- {file = "librt-0.7.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a9c5de1928c486201b23ed0cc4ac92e6e07be5cd7f3abc57c88a9cf4f0f32108"},
214
- {file = "librt-0.7.4-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:078ae52ffb3f036396cc4aed558e5b61faedd504a3c1f62b8ae34bf95ae39d94"},
215
- {file = "librt-0.7.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ce58420e25097b2fc201aef9b9f6d65df1eb8438e51154e1a7feb8847e4a55ab"},
216
- {file = "librt-0.7.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b719c8730c02a606dc0e8413287e8e94ac2d32a51153b300baf1f62347858fba"},
217
- {file = "librt-0.7.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3749ef74c170809e6dee68addec9d2458700a8de703de081c888e92a8b015cf9"},
218
- {file = "librt-0.7.4-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b35c63f557653c05b5b1b6559a074dbabe0afee28ee2a05b6c9ba21ad0d16a74"},
219
- {file = "librt-0.7.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1ef704e01cb6ad39ad7af668d51677557ca7e5d377663286f0ee1b6b27c28e5f"},
220
- {file = "librt-0.7.4-cp312-cp312-win32.whl", hash = "sha256:c66c2b245926ec15188aead25d395091cb5c9df008d3b3207268cd65557d6286"},
221
- {file = "librt-0.7.4-cp312-cp312-win_amd64.whl", hash = "sha256:71a56f4671f7ff723451f26a6131754d7c1809e04e22ebfbac1db8c9e6767a20"},
222
- {file = "librt-0.7.4-cp312-cp312-win_arm64.whl", hash = "sha256:419eea245e7ec0fe664eb7e85e7ff97dcdb2513ca4f6b45a8ec4a3346904f95a"},
223
- {file = "librt-0.7.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d44a1b1ba44cbd2fc3cb77992bef6d6fdb1028849824e1dd5e4d746e1f7f7f0b"},
224
- {file = "librt-0.7.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c9cab4b3de1f55e6c30a84c8cee20e4d3b2476f4d547256694a1b0163da4fe32"},
225
- {file = "librt-0.7.4-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:2857c875f1edd1feef3c371fbf830a61b632fb4d1e57160bb1e6a3206e6abe67"},
226
- {file = "librt-0.7.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b370a77be0a16e1ad0270822c12c21462dc40496e891d3b0caf1617c8cc57e20"},
227
- {file = "librt-0.7.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d05acd46b9a52087bfc50c59dfdf96a2c480a601e8898a44821c7fd676598f74"},
228
- {file = "librt-0.7.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:70969229cb23d9c1a80e14225838d56e464dc71fa34c8342c954fc50e7516dee"},
229
- {file = "librt-0.7.4-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4450c354b89dbb266730893862dbff06006c9ed5b06b6016d529b2bf644fc681"},
230
- {file = "librt-0.7.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:adefe0d48ad35b90b6f361f6ff5a1bd95af80c17d18619c093c60a20e7a5b60c"},
231
- {file = "librt-0.7.4-cp313-cp313-win32.whl", hash = "sha256:21ea710e96c1e050635700695095962a22ea420d4b3755a25e4909f2172b4ff2"},
232
- {file = "librt-0.7.4-cp313-cp313-win_amd64.whl", hash = "sha256:772e18696cf5a64afee908662fbcb1f907460ddc851336ee3a848ef7684c8e1e"},
233
- {file = "librt-0.7.4-cp313-cp313-win_arm64.whl", hash = "sha256:52e34c6af84e12921748c8354aa6acf1912ca98ba60cdaa6920e34793f1a0788"},
234
- {file = "librt-0.7.4-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:4f1ee004942eaaed6e06c087d93ebc1c67e9a293e5f6b9b5da558df6bf23dc5d"},
235
- {file = "librt-0.7.4-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:d854c6dc0f689bad7ed452d2a3ecff58029d80612d336a45b62c35e917f42d23"},
236
- {file = "librt-0.7.4-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:a4f7339d9e445280f23d63dea842c0c77379c4a47471c538fc8feedab9d8d063"},
237
- {file = "librt-0.7.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:39003fc73f925e684f8521b2dbf34f61a5deb8a20a15dcf53e0d823190ce8848"},
238
- {file = "librt-0.7.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6bb15ee29d95875ad697d449fe6071b67f730f15a6961913a2b0205015ca0843"},
239
- {file = "librt-0.7.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:02a69369862099e37d00765583052a99d6a68af7e19b887e1b78fee0146b755a"},
240
- {file = "librt-0.7.4-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:ec72342cc4d62f38b25a94e28b9efefce41839aecdecf5e9627473ed04b7be16"},
241
- {file = "librt-0.7.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:776dbb9bfa0fc5ce64234b446995d8d9f04badf64f544ca036bd6cff6f0732ce"},
242
- {file = "librt-0.7.4-cp314-cp314-win32.whl", hash = "sha256:0f8cac84196d0ffcadf8469d9ded4d4e3a8b1c666095c2a291e22bf58e1e8a9f"},
243
- {file = "librt-0.7.4-cp314-cp314-win_amd64.whl", hash = "sha256:037f5cb6fe5abe23f1dc058054d50e9699fcc90d0677eee4e4f74a8677636a1a"},
244
- {file = "librt-0.7.4-cp314-cp314-win_arm64.whl", hash = "sha256:a5deebb53d7a4d7e2e758a96befcd8edaaca0633ae71857995a0f16033289e44"},
245
- {file = "librt-0.7.4-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:b4c25312c7f4e6ab35ab16211bdf819e6e4eddcba3b2ea632fb51c9a2a97e105"},
246
- {file = "librt-0.7.4-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:618b7459bb392bdf373f2327e477597fff8f9e6a1878fffc1b711c013d1b0da4"},
247
- {file = "librt-0.7.4-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:1437c3f72a30c7047f16fd3e972ea58b90172c3c6ca309645c1c68984f05526a"},
248
- {file = "librt-0.7.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c96cb76f055b33308f6858b9b594618f1b46e147a4d03a4d7f0c449e304b9b95"},
249
- {file = "librt-0.7.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:28f990e6821204f516d09dc39966ef8b84556ffd648d5926c9a3f681e8de8906"},
250
- {file = "librt-0.7.4-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:bc4aebecc79781a1b77d7d4e7d9fe080385a439e198d993b557b60f9117addaf"},
251
- {file = "librt-0.7.4-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:022cc673e69283a42621dd453e2407cf1647e77f8bd857d7ad7499901e62376f"},
252
- {file = "librt-0.7.4-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:2b3ca211ae8ea540569e9c513da052699b7b06928dcda61247cb4f318122bdb5"},
253
- {file = "librt-0.7.4-cp314-cp314t-win32.whl", hash = "sha256:8a461f6456981d8c8e971ff5a55f2e34f4e60871e665d2f5fde23ee74dea4eeb"},
254
- {file = "librt-0.7.4-cp314-cp314t-win_amd64.whl", hash = "sha256:721a7b125a817d60bf4924e1eec2a7867bfcf64cfc333045de1df7a0629e4481"},
255
- {file = "librt-0.7.4-cp314-cp314t-win_arm64.whl", hash = "sha256:76b2ba71265c0102d11458879b4d53ccd0b32b0164d14deb8d2b598a018e502f"},
256
- {file = "librt-0.7.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6fc4aa67fedd827a601f97f0e61cc72711d0a9165f2c518e9a7c38fc1568b9ad"},
257
- {file = "librt-0.7.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e710c983d29d9cc4da29113b323647db286eaf384746344f4a233708cca1a82c"},
258
- {file = "librt-0.7.4-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:43a2515a33f2bc17b15f7fb49ff6426e49cb1d5b2539bc7f8126b9c5c7f37164"},
259
- {file = "librt-0.7.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0fd766bb9ace3498f6b93d32f30c0e7c8ce6b727fecbc84d28160e217bb66254"},
260
- {file = "librt-0.7.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ce1b44091355b68cffd16e2abac07c1cafa953fa935852d3a4dd8975044ca3bf"},
261
- {file = "librt-0.7.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5a72b905420c4bb2c10c87b5c09fe6faf4a76d64730e3802feef255e43dfbf5a"},
262
- {file = "librt-0.7.4-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:07c4d7c9305e75a0edd3427b79c7bd1d019cd7eddaa7c89dbb10e0c7946bffbb"},
263
- {file = "librt-0.7.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2e734c2c54423c6dcc77f58a8585ba83b9f72e422f9edf09cab1096d4a4bdc82"},
264
- {file = "librt-0.7.4-cp39-cp39-win32.whl", hash = "sha256:a34ae11315d4e26326aaf04e21ccd8d9b7de983635fba38d73e203a9c8e3fe3d"},
265
- {file = "librt-0.7.4-cp39-cp39-win_amd64.whl", hash = "sha256:7e4b5ffa1614ad4f32237d739699be444be28de95071bfa4e66a8da9fa777798"},
266
- {file = "librt-0.7.4.tar.gz", hash = "sha256:3871af56c59864d5fd21d1ac001eb2fb3b140d52ba0454720f2e4a19812404ba"},
191
+ {file = "librt-0.7.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:81056e01bba1394f1d92904ec61a4078f66df785316275edbaf51d90da8c6e26"},
192
+ {file = "librt-0.7.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d7c72c8756eeb3aefb1b9e3dac7c37a4a25db63640cac0ab6fc18e91a0edf05a"},
193
+ {file = "librt-0.7.5-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:ddc4a16207f88f9597b397fc1f60781266d13b13de922ff61c206547a29e4bbd"},
194
+ {file = "librt-0.7.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:63055d3dda433ebb314c9f1819942f16a19203c454508fdb2d167613f7017169"},
195
+ {file = "librt-0.7.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9f85f9b5db87b0f52e53c68ad2a0c5a53e00afa439bd54a1723742a2b1021276"},
196
+ {file = "librt-0.7.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c566a4672564c5d54d8ab65cdaae5a87ee14c1564c1a2ddc7a9f5811c750f023"},
197
+ {file = "librt-0.7.5-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fee15c2a190ef389f14928135c6fb2d25cd3fdb7887bfd9a7b444bbdc8c06b96"},
198
+ {file = "librt-0.7.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:584cb3e605ec45ba350962cec853e17be0a25a772f21f09f1e422f7044ae2a7d"},
199
+ {file = "librt-0.7.5-cp310-cp310-win32.whl", hash = "sha256:9c08527055fbb03c641c15bbc5b79dd2942fb6a3bd8dabf141dd7e97eeea4904"},
200
+ {file = "librt-0.7.5-cp310-cp310-win_amd64.whl", hash = "sha256:dd810f2d39c526c42ea205e0addad5dc08ef853c625387806a29d07f9d150d9b"},
201
+ {file = "librt-0.7.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f952e1a78c480edee8fb43aa2bf2e84dcd46c917d44f8065b883079d3893e8fc"},
202
+ {file = "librt-0.7.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75965c1f4efb7234ff52a58b729d245a21e87e4b6a26a0ec08052f02b16274e4"},
203
+ {file = "librt-0.7.5-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:732e0aa0385b59a1b2545159e781c792cc58ce9c134249233a7c7250a44684c4"},
204
+ {file = "librt-0.7.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cdde31759bd8888f3ef0eebda80394a48961328a17c264dce8cc35f4b9cde35d"},
205
+ {file = "librt-0.7.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:df3146d52465b3b6397d25d513f428cb421c18df65b7378667bb5f1e3cc45805"},
206
+ {file = "librt-0.7.5-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:29c8d2fae11d4379ea207ba7fc69d43237e42cf8a9f90ec6e05993687e6d648b"},
207
+ {file = "librt-0.7.5-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:bb41f04046b4f22b1e7ba5ef513402cd2e3477ec610e5f92d38fe2bba383d419"},
208
+ {file = "librt-0.7.5-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:8bb7883c1e94ceb87c2bf81385266f032da09cd040e804cc002f2c9d6b842e2f"},
209
+ {file = "librt-0.7.5-cp311-cp311-win32.whl", hash = "sha256:84d4a6b9efd6124f728558a18e79e7cc5c5d4efc09b2b846c910de7e564f5bad"},
210
+ {file = "librt-0.7.5-cp311-cp311-win_amd64.whl", hash = "sha256:ab4b0d3bee6f6ff7017e18e576ac7e41a06697d8dea4b8f3ab9e0c8e1300c409"},
211
+ {file = "librt-0.7.5-cp311-cp311-win_arm64.whl", hash = "sha256:730be847daad773a3c898943cf67fb9845a3961d06fb79672ceb0a8cd8624cfa"},
212
+ {file = "librt-0.7.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ba1077c562a046208a2dc6366227b3eeae8f2c2ab4b41eaf4fd2fa28cece4203"},
213
+ {file = "librt-0.7.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:654fdc971c76348a73af5240d8e2529265b9a7ba6321e38dd5bae7b0d4ab3abe"},
214
+ {file = "librt-0.7.5-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:6b7b58913d475911f6f33e8082f19dd9b120c4f4a5c911d07e395d67b81c6982"},
215
+ {file = "librt-0.7.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b8e0fd344bad57026a8f4ccfaf406486c2fc991838050c2fef156170edc3b775"},
216
+ {file = "librt-0.7.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:46aa91813c267c3f60db75d56419b42c0c0b9748ec2c568a0e3588e543fb4233"},
217
+ {file = "librt-0.7.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ddc0ab9dbc5f9ceaf2bf7a367bf01f2697660e908f6534800e88f43590b271db"},
218
+ {file = "librt-0.7.5-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:7a488908a470451338607650f1c064175094aedebf4a4fa37890682e30ce0b57"},
219
+ {file = "librt-0.7.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e47fc52602ffc374e69bf1b76536dc99f7f6dd876bd786c8213eaa3598be030a"},
220
+ {file = "librt-0.7.5-cp312-cp312-win32.whl", hash = "sha256:cda8b025875946ffff5a9a7590bf9acde3eb02cb6200f06a2d3e691ef3d9955b"},
221
+ {file = "librt-0.7.5-cp312-cp312-win_amd64.whl", hash = "sha256:b591c094afd0ffda820e931148c9e48dc31a556dc5b2b9b3cc552fa710d858e4"},
222
+ {file = "librt-0.7.5-cp312-cp312-win_arm64.whl", hash = "sha256:532ddc6a8a6ca341b1cd7f4d999043e4c71a212b26fe9fd2e7f1e8bb4e873544"},
223
+ {file = "librt-0.7.5-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b1795c4b2789b458fa290059062c2f5a297ddb28c31e704d27e161386469691a"},
224
+ {file = "librt-0.7.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2fcbf2e135c11f721193aa5f42ba112bb1046afafbffd407cbc81d8d735c74d0"},
225
+ {file = "librt-0.7.5-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:c039bbf79a9a2498404d1ae7e29a6c175e63678d7a54013a97397c40aee026c5"},
226
+ {file = "librt-0.7.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3919c9407faeeee35430ae135e3a78acd4ecaaaa73767529e2c15ca1d73ba325"},
227
+ {file = "librt-0.7.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:26b46620e1e0e45af510d9848ea0915e7040605dd2ae94ebefb6c962cbb6f7ec"},
228
+ {file = "librt-0.7.5-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9bbb8facc5375476d392990dd6a71f97e4cb42e2ac66f32e860f6e47299d5e89"},
229
+ {file = "librt-0.7.5-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:e9e9c988b5ffde7be02180f864cbd17c0b0c1231c235748912ab2afa05789c25"},
230
+ {file = "librt-0.7.5-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:edf6b465306215b19dbe6c3fb63cf374a8f3e1ad77f3b4c16544b83033bbb67b"},
231
+ {file = "librt-0.7.5-cp313-cp313-win32.whl", hash = "sha256:060bde69c3604f694bd8ae21a780fe8be46bb3dbb863642e8dfc75c931ca8eee"},
232
+ {file = "librt-0.7.5-cp313-cp313-win_amd64.whl", hash = "sha256:a82d5a0ee43aeae2116d7292c77cc8038f4841830ade8aa922e098933b468b9e"},
233
+ {file = "librt-0.7.5-cp313-cp313-win_arm64.whl", hash = "sha256:3c98a8d0ac9e2a7cb8ff8c53e5d6e8d82bfb2839abf144fdeaaa832f2a12aa45"},
234
+ {file = "librt-0.7.5-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:9937574e6d842f359b8585903d04f5b4ab62277a091a93e02058158074dc52f2"},
235
+ {file = "librt-0.7.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:5cd3afd71e9bc146203b6c8141921e738364158d4aa7cdb9a874e2505163770f"},
236
+ {file = "librt-0.7.5-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:9cffa3ef0af29687455161cb446eff059bf27607f95163d6a37e27bcb37180f6"},
237
+ {file = "librt-0.7.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:82f3f088482e2229387eadf8215c03f7726d56f69cce8c0c40f0795aebc9b361"},
238
+ {file = "librt-0.7.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d7aa33153a5bb0bac783d2c57885889b1162823384e8313d47800a0e10d0070e"},
239
+ {file = "librt-0.7.5-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:265729b551a2dd329cc47b323a182fb7961af42abf21e913c9dd7d3331b2f3c2"},
240
+ {file = "librt-0.7.5-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:168e04663e126416ba712114050f413ac306759a1791d87b7c11d4428ba75760"},
241
+ {file = "librt-0.7.5-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:553dc58987d1d853adda8aeadf4db8e29749f0b11877afcc429a9ad892818ae2"},
242
+ {file = "librt-0.7.5-cp314-cp314-win32.whl", hash = "sha256:263f4fae9eba277513357c871275b18d14de93fd49bf5e43dc60a97b81ad5eb8"},
243
+ {file = "librt-0.7.5-cp314-cp314-win_amd64.whl", hash = "sha256:85f485b7471571e99fab4f44eeb327dc0e1f814ada575f3fa85e698417d8a54e"},
244
+ {file = "librt-0.7.5-cp314-cp314-win_arm64.whl", hash = "sha256:49c596cd18e90e58b7caa4d7ca7606049c1802125fcff96b8af73fa5c3870e4d"},
245
+ {file = "librt-0.7.5-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:54d2aef0b0f5056f130981ad45081b278602ff3657fe16c88529f5058038e802"},
246
+ {file = "librt-0.7.5-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:0b4791202296ad51ac09a3ff58eb49d9da8e3a4009167a6d76ac418a974e5fd4"},
247
+ {file = "librt-0.7.5-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:6e860909fea75baef941ee6436e0453612505883b9d0d87924d4fda27865b9a2"},
248
+ {file = "librt-0.7.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f02c4337bf271c4f06637f5ff254fad2238c0b8e32a3a480ebb2fc5e26f754a5"},
249
+ {file = "librt-0.7.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f7f51ffe59f4556243d3cc82d827bde74765f594fa3ceb80ec4de0c13ccd3416"},
250
+ {file = "librt-0.7.5-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:0b7f080ba30601dfa3e3deed3160352273e1b9bc92e652f51103c3e9298f7899"},
251
+ {file = "librt-0.7.5-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:fb565b4219abc8ea2402e61c7ba648a62903831059ed3564fa1245cc245d58d7"},
252
+ {file = "librt-0.7.5-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:8a3cfb15961e7333ea6ef033dc574af75153b5c230d5ad25fbcd55198f21e0cf"},
253
+ {file = "librt-0.7.5-cp314-cp314t-win32.whl", hash = "sha256:118716de5ad6726332db1801bc90fa6d94194cd2e07c1a7822cebf12c496714d"},
254
+ {file = "librt-0.7.5-cp314-cp314t-win_amd64.whl", hash = "sha256:3dd58f7ce20360c6ce0c04f7bd9081c7f9c19fc6129a3c705d0c5a35439f201d"},
255
+ {file = "librt-0.7.5-cp314-cp314t-win_arm64.whl", hash = "sha256:08153ea537609d11f774d2bfe84af39d50d5c9ca3a4d061d946e0c9d8bce04a1"},
256
+ {file = "librt-0.7.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:df2e210400b28e50994477ebf82f055698c79797b6ee47a1669d383ca33263e1"},
257
+ {file = "librt-0.7.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d2cc7d187e8c6e9b7bdbefa9697ce897a704ea7a7ce844f2b4e0e2aa07ae51d3"},
258
+ {file = "librt-0.7.5-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:39183abee670bc37b85f11e86c44a9cad1ed6efa48b580083e89ecee13dd9717"},
259
+ {file = "librt-0.7.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:191cbd42660446d67cf7a95ac7bfa60f49b8b3b0417c64f216284a1d86fc9335"},
260
+ {file = "librt-0.7.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ea1b60b86595a5dc1f57b44a801a1c4d8209c0a69518391d349973a4491408e6"},
261
+ {file = "librt-0.7.5-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:af69d9e159575e877c7546d1ee817b4ae089aa221dd1117e20c24ad8dc8659c7"},
262
+ {file = "librt-0.7.5-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:0e2bf8f91093fac43e3eaebacf777f12fd539dce9ec5af3efc6d8424e96ccd49"},
263
+ {file = "librt-0.7.5-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:8dcae24de1bc9da93aa689cb6313c70e776d7cea2fcf26b9b6160fedfe6bd9af"},
264
+ {file = "librt-0.7.5-cp39-cp39-win32.whl", hash = "sha256:cdb001a1a0e4f41e613bca2c0fc147fc8a7396f53fc94201cbfd8ec7cd69ca4b"},
265
+ {file = "librt-0.7.5-cp39-cp39-win_amd64.whl", hash = "sha256:a9eacbf983319b26b5f340a2e0cd47ac1ee4725a7f3a72fd0f15063c934b69d6"},
266
+ {file = "librt-0.7.5.tar.gz", hash = "sha256:de4221a1181fa9c8c4b5f35506ed6f298948f44003d84d2a8b9885d7e01e6cfa"},
267
267
  ]
268
268
 
269
269
  [[package]]
@@ -3,7 +3,7 @@ module-name = "lindera"
3
3
 
4
4
  [project]
5
5
  name = "lindera-python"
6
- version = "1.3.2"
6
+ version = "1.4.0"
7
7
  description = "Python binding for Lindera (no embedded dictionaries)"
8
8
  authors = [{ name = "Minoru Osuka", email = "minoru.osuka@gmail.com" }]
9
9
  license = { text = "MIT" }
File without changes
File without changes
File without changes