lindera-python 1.4.0__tar.gz → 1.4.1__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.4.0 → lindera_python-1.4.1}/.github/workflows/release.yml +4 -4
  2. {lindera_python-1.4.0 → lindera_python-1.4.1}/Cargo.lock +293 -76
  3. {lindera_python-1.4.0 → lindera_python-1.4.1}/Cargo.toml +2 -2
  4. {lindera_python-1.4.0 → lindera_python-1.4.1}/PKG-INFO +1 -1
  5. {lindera_python-1.4.0 → lindera_python-1.4.1}/poetry.lock +77 -77
  6. {lindera_python-1.4.0 → lindera_python-1.4.1}/pyproject.toml +1 -1
  7. {lindera_python-1.4.0 → lindera_python-1.4.1}/.github/FUNDING.yml +0 -0
  8. {lindera_python-1.4.0 → lindera_python-1.4.1}/.github/dependabot.yml +0 -0
  9. {lindera_python-1.4.0 → lindera_python-1.4.1}/.github/workflows/periodic.yml +0 -0
  10. {lindera_python-1.4.0 → lindera_python-1.4.1}/.github/workflows/regression.yml +0 -0
  11. {lindera_python-1.4.0 → lindera_python-1.4.1}/.gitignore +0 -0
  12. {lindera_python-1.4.0 → lindera_python-1.4.1}/CHANGES.md +0 -0
  13. {lindera_python-1.4.0 → lindera_python-1.4.1}/LICENSE +0 -0
  14. {lindera_python-1.4.0 → lindera_python-1.4.1}/Makefile +0 -0
  15. {lindera_python-1.4.0 → lindera_python-1.4.1}/README.md +0 -0
  16. {lindera_python-1.4.0 → lindera_python-1.4.1}/examples/build_ipadic.py +0 -0
  17. {lindera_python-1.4.0 → lindera_python-1.4.1}/examples/tokenize.py +0 -0
  18. {lindera_python-1.4.0 → lindera_python-1.4.1}/examples/tokenize_with_decompose.py +0 -0
  19. {lindera_python-1.4.0 → lindera_python-1.4.1}/examples/tokenize_with_filters.py +0 -0
  20. {lindera_python-1.4.0 → lindera_python-1.4.1}/examples/tokenize_with_userdict.py +0 -0
  21. {lindera_python-1.4.0 → lindera_python-1.4.1}/examples/train_and_export.py +0 -0
  22. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/bocchan.txt +0 -0
  23. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/cc-cedict_metadata.json +0 -0
  24. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/cc-cedict_simple_userdic.bin +0 -0
  25. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/cc-cedict_simple_userdic.csv +0 -0
  26. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/ipadic-neologd_metadata.json +0 -0
  27. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/ipadic_detailed_userdic.csv +0 -0
  28. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/ipadic_metadata.json +0 -0
  29. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/ipadic_mixed_userdic.csv +0 -0
  30. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/ipadic_simple_userdic.bin +0 -0
  31. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/ipadic_simple_userdic.csv +0 -0
  32. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/ipadic_userdic_insufficient_number_of_fields.csv +0 -0
  33. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/ipadic_userdic_invalid_word_cost.csv +0 -0
  34. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/ko-dic_metadata.json +0 -0
  35. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/ko-dic_simple_userdic.bin +0 -0
  36. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/ko-dic_simple_userdic.csv +0 -0
  37. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/lindera.yml +0 -0
  38. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/unidic_metadata.json +0 -0
  39. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/unidic_simple_userdic.bin +0 -0
  40. {lindera_python-1.4.0 → lindera_python-1.4.1}/resources/unidic_simple_userdic.csv +0 -0
  41. {lindera_python-1.4.0 → lindera_python-1.4.1}/src/dictionary.rs +0 -0
  42. {lindera_python-1.4.0 → lindera_python-1.4.1}/src/error.rs +0 -0
  43. {lindera_python-1.4.0 → lindera_python-1.4.1}/src/lib.rs +0 -0
  44. {lindera_python-1.4.0 → lindera_python-1.4.1}/src/metadata.rs +0 -0
  45. {lindera_python-1.4.0 → lindera_python-1.4.1}/src/mode.rs +0 -0
  46. {lindera_python-1.4.0 → lindera_python-1.4.1}/src/schema.rs +0 -0
  47. {lindera_python-1.4.0 → lindera_python-1.4.1}/src/tokenizer.rs +0 -0
  48. {lindera_python-1.4.0 → lindera_python-1.4.1}/src/trainer.rs +0 -0
  49. {lindera_python-1.4.0 → lindera_python-1.4.1}/src/util.rs +0 -0
  50. {lindera_python-1.4.0 → lindera_python-1.4.1}/tests/__init__py +0 -0
  51. {lindera_python-1.4.0 → lindera_python-1.4.1}/tests/test_tokenize_ipadic.py +0 -0
  52. {lindera_python-1.4.0 → lindera_python-1.4.1}/tests/test_trainer.py +0 -0
@@ -42,8 +42,8 @@ jobs:
42
42
  platform:
43
43
  - runner: ubuntu-latest
44
44
  target: x86_64-unknown-linux-gnu
45
- # - runner: macOS-latest
46
- # target: x86_64-apple-darwin
45
+ - runner: macOS-latest
46
+ target: x86_64-apple-darwin
47
47
  - runner: macOS-latest
48
48
  target: aarch64-apple-darwin
49
49
  - runner: windows-latest
@@ -264,8 +264,8 @@ jobs:
264
264
  max-parallel: 1
265
265
  matrix:
266
266
  platform:
267
- # - runner: macos-latest
268
- # target: x86_64
267
+ - runner: macos-latest
268
+ target: x86_64
269
269
  - runner: macos-latest
270
270
  target: aarch64
271
271
  toolchain: [stable]
@@ -88,6 +88,28 @@ version = "1.1.0"
88
88
  source = "registry+https://github.com/rust-lang/crates.io-index"
89
89
  checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
90
90
 
91
+ [[package]]
92
+ name = "aws-lc-rs"
93
+ version = "1.15.2"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "6a88aab2464f1f25453baa7a07c84c5b7684e274054ba06817f382357f77a288"
96
+ dependencies = [
97
+ "aws-lc-sys",
98
+ "zeroize",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "aws-lc-sys"
103
+ version = "0.35.0"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "b45afffdee1e7c9126814751f88dddc747f41d91da16c9551a0f1e8a11e788a1"
106
+ dependencies = [
107
+ "cc",
108
+ "cmake",
109
+ "dunce",
110
+ "fs_extra",
111
+ ]
112
+
91
113
  [[package]]
92
114
  name = "base64"
93
115
  version = "0.22.1"
@@ -169,13 +191,22 @@ checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
169
191
 
170
192
  [[package]]
171
193
  name = "cc"
172
- version = "1.1.21"
194
+ version = "1.2.51"
173
195
  source = "registry+https://github.com/rust-lang/crates.io-index"
174
- checksum = "07b1695e2c7e8fc85310cde85aeaab7e3097f593c91d209d3f9df76c928100f0"
196
+ checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
175
197
  dependencies = [
198
+ "find-msvc-tools",
199
+ "jobserver",
200
+ "libc",
176
201
  "shlex",
177
202
  ]
178
203
 
204
+ [[package]]
205
+ name = "cesu8"
206
+ version = "1.1.0"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
209
+
179
210
  [[package]]
180
211
  name = "cfg-if"
181
212
  version = "1.0.0"
@@ -201,6 +232,35 @@ dependencies = [
201
232
  "windows-link",
202
233
  ]
203
234
 
235
+ [[package]]
236
+ name = "cmake"
237
+ version = "0.1.57"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
240
+ dependencies = [
241
+ "cc",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "combine"
246
+ version = "4.6.7"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
249
+ dependencies = [
250
+ "bytes",
251
+ "memchr",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "core-foundation"
256
+ version = "0.10.1"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
259
+ dependencies = [
260
+ "core-foundation-sys",
261
+ "libc",
262
+ ]
263
+
204
264
  [[package]]
205
265
  name = "core-foundation-sys"
206
266
  version = "0.8.7"
@@ -338,6 +398,12 @@ dependencies = [
338
398
  "syn",
339
399
  ]
340
400
 
401
+ [[package]]
402
+ name = "dunce"
403
+ version = "1.0.5"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
406
+
341
407
  [[package]]
342
408
  name = "encoding"
343
409
  version = "0.2.33"
@@ -448,6 +514,12 @@ dependencies = [
448
514
  "windows-sys 0.42.0",
449
515
  ]
450
516
 
517
+ [[package]]
518
+ name = "find-msvc-tools"
519
+ version = "0.1.6"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
522
+
451
523
  [[package]]
452
524
  name = "flate2"
453
525
  version = "1.1.5"
@@ -479,6 +551,12 @@ dependencies = [
479
551
  "percent-encoding",
480
552
  ]
481
553
 
554
+ [[package]]
555
+ name = "fs_extra"
556
+ version = "1.3.0"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
559
+
482
560
  [[package]]
483
561
  name = "futures-channel"
484
562
  version = "0.3.31"
@@ -648,7 +726,6 @@ dependencies = [
648
726
  "tokio",
649
727
  "tokio-rustls",
650
728
  "tower-service",
651
- "webpki-roots 0.26.11",
652
729
  ]
653
730
 
654
731
  [[package]]
@@ -902,6 +979,38 @@ version = "1.0.4"
902
979
  source = "registry+https://github.com/rust-lang/crates.io-index"
903
980
  checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
904
981
 
982
+ [[package]]
983
+ name = "jni"
984
+ version = "0.21.1"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
987
+ dependencies = [
988
+ "cesu8",
989
+ "cfg-if",
990
+ "combine",
991
+ "jni-sys",
992
+ "log",
993
+ "thiserror 1.0.69",
994
+ "walkdir",
995
+ "windows-sys 0.45.0",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "jni-sys"
1000
+ version = "0.3.0"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1003
+
1004
+ [[package]]
1005
+ name = "jobserver"
1006
+ version = "0.1.34"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1009
+ dependencies = [
1010
+ "getrandom 0.3.3",
1011
+ "libc",
1012
+ ]
1013
+
905
1014
  [[package]]
906
1015
  name = "js-sys"
907
1016
  version = "0.3.77"
@@ -929,9 +1038,9 @@ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
929
1038
 
930
1039
  [[package]]
931
1040
  name = "lindera"
932
- version = "1.5.0"
1041
+ version = "1.5.1"
933
1042
  source = "registry+https://github.com/rust-lang/crates.io-index"
934
- checksum = "1c5f24213f764c5c7ecbf53ec8c90266f5603ae59e2862c470b2b51174558c23"
1043
+ checksum = "37c705f6841f5d6d92f0fb49b3394e0b633f7b68e6bb6bfaaf02d794ade1de61"
935
1044
  dependencies = [
936
1045
  "anyhow",
937
1046
  "byteorder",
@@ -960,9 +1069,9 @@ dependencies = [
960
1069
 
961
1070
  [[package]]
962
1071
  name = "lindera-cc-cedict"
963
- version = "1.5.0"
1072
+ version = "1.5.1"
964
1073
  source = "registry+https://github.com/rust-lang/crates.io-index"
965
- checksum = "ab8c0e22439182088b2d1f6fcc3b9a905a70df60122262a1354fd4d771d44589"
1074
+ checksum = "34aad0b904e0e5c6ab4df0c426e9e7e73baa1bd02beb5f6caa299a2c50b65be5"
966
1075
  dependencies = [
967
1076
  "anyhow",
968
1077
  "byteorder",
@@ -976,9 +1085,9 @@ dependencies = [
976
1085
 
977
1086
  [[package]]
978
1087
  name = "lindera-dictionary"
979
- version = "1.5.0"
1088
+ version = "1.5.1"
980
1089
  source = "registry+https://github.com/rust-lang/crates.io-index"
981
- checksum = "ec2ba2c2c0d7d68442e7c8accbac5474d4d90c1c8dce3d58b1a9ef7d808c5396"
1090
+ checksum = "58d801e2f083a6a55c95eab013b8159029a538bb23d25f998537ca83f519c0ce"
982
1091
  dependencies = [
983
1092
  "anyhow",
984
1093
  "byteorder",
@@ -1011,9 +1120,9 @@ dependencies = [
1011
1120
 
1012
1121
  [[package]]
1013
1122
  name = "lindera-ipadic"
1014
- version = "1.5.0"
1123
+ version = "1.5.1"
1015
1124
  source = "registry+https://github.com/rust-lang/crates.io-index"
1016
- checksum = "2fe46f27c3f46ff0a7aadb3ba643e2f47312017df211d36a6287535e0656c075"
1125
+ checksum = "4c96c39429b860d3cd6673817654f73c3569fdd4ff5ee350579b7144f3af6607"
1017
1126
  dependencies = [
1018
1127
  "anyhow",
1019
1128
  "byteorder",
@@ -1027,9 +1136,9 @@ dependencies = [
1027
1136
 
1028
1137
  [[package]]
1029
1138
  name = "lindera-ipadic-neologd"
1030
- version = "1.5.0"
1139
+ version = "1.5.1"
1031
1140
  source = "registry+https://github.com/rust-lang/crates.io-index"
1032
- checksum = "904b749937b5669be8c2a7188306d7523fa1e9fcb893323984244edb0e0fd053"
1141
+ checksum = "aafe1b69d68bf202c1dc38f7650617269627806b532addf179f6ecd117290a13"
1033
1142
  dependencies = [
1034
1143
  "anyhow",
1035
1144
  "byteorder",
@@ -1043,9 +1152,9 @@ dependencies = [
1043
1152
 
1044
1153
  [[package]]
1045
1154
  name = "lindera-ko-dic"
1046
- version = "1.5.0"
1155
+ version = "1.5.1"
1047
1156
  source = "registry+https://github.com/rust-lang/crates.io-index"
1048
- checksum = "a2e10b6d58db246ab39f87ac173382b591d39e8ef04dbf50798d8344aa8cceca"
1157
+ checksum = "420133c798b4162a1fb3e8c483da0add4e370f22d3e90c9f2ef15013bdac9ce2"
1049
1158
  dependencies = [
1050
1159
  "anyhow",
1051
1160
  "byteorder",
@@ -1059,7 +1168,7 @@ dependencies = [
1059
1168
 
1060
1169
  [[package]]
1061
1170
  name = "lindera-python"
1062
- version = "1.4.0"
1171
+ version = "1.4.1"
1063
1172
  dependencies = [
1064
1173
  "lindera",
1065
1174
  "num_cpus",
@@ -1070,9 +1179,9 @@ dependencies = [
1070
1179
 
1071
1180
  [[package]]
1072
1181
  name = "lindera-unidic"
1073
- version = "1.5.0"
1182
+ version = "1.5.1"
1074
1183
  source = "registry+https://github.com/rust-lang/crates.io-index"
1075
- checksum = "7e350811efdcca8df7d29edc2f563aea18ab644ec45cbcfcd2da4de81d413226"
1184
+ checksum = "ae93789d60f4423c341af4f17bb83180a30aa3c156329fab647f446e00cf364b"
1076
1185
  dependencies = [
1077
1186
  "anyhow",
1078
1187
  "byteorder",
@@ -1229,6 +1338,12 @@ version = "1.21.3"
1229
1338
  source = "registry+https://github.com/rust-lang/crates.io-index"
1230
1339
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1231
1340
 
1341
+ [[package]]
1342
+ name = "openssl-probe"
1343
+ version = "0.2.0"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "9f50d9b3dabb09ecd771ad0aa242ca6894994c130308ca3d7684634df8037391"
1346
+
1232
1347
  [[package]]
1233
1348
  name = "paste"
1234
1349
  version = "1.0.15"
@@ -1390,6 +1505,7 @@ version = "0.11.12"
1390
1505
  source = "registry+https://github.com/rust-lang/crates.io-index"
1391
1506
  checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
1392
1507
  dependencies = [
1508
+ "aws-lc-rs",
1393
1509
  "bytes",
1394
1510
  "getrandom 0.3.3",
1395
1511
  "lru-slab",
@@ -1560,9 +1676,9 @@ dependencies = [
1560
1676
 
1561
1677
  [[package]]
1562
1678
  name = "reqwest"
1563
- version = "0.12.28"
1679
+ version = "0.13.1"
1564
1680
  source = "registry+https://github.com/rust-lang/crates.io-index"
1565
- checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1681
+ checksum = "04e9018c9d814e5f30cc16a0f03271aeab3571e609612d9fe78c1aa8d11c2f62"
1566
1682
  dependencies = [
1567
1683
  "base64",
1568
1684
  "bytes",
@@ -1580,9 +1696,7 @@ dependencies = [
1580
1696
  "quinn",
1581
1697
  "rustls",
1582
1698
  "rustls-pki-types",
1583
- "serde",
1584
- "serde_json",
1585
- "serde_urlencoded",
1699
+ "rustls-platform-verifier",
1586
1700
  "sync_wrapper",
1587
1701
  "tokio",
1588
1702
  "tokio-rustls",
@@ -1593,7 +1707,6 @@ dependencies = [
1593
1707
  "wasm-bindgen",
1594
1708
  "wasm-bindgen-futures",
1595
1709
  "web-sys",
1596
- "webpki-roots 1.0.0",
1597
1710
  ]
1598
1711
 
1599
1712
  [[package]]
@@ -1676,33 +1789,74 @@ dependencies = [
1676
1789
 
1677
1790
  [[package]]
1678
1791
  name = "rustls"
1679
- version = "0.23.13"
1792
+ version = "0.23.35"
1680
1793
  source = "registry+https://github.com/rust-lang/crates.io-index"
1681
- checksum = "f2dabaac7466917e566adb06783a81ca48944c6898a1b08b9374106dd671f4c8"
1794
+ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
1682
1795
  dependencies = [
1796
+ "aws-lc-rs",
1683
1797
  "once_cell",
1684
- "ring",
1685
1798
  "rustls-pki-types",
1686
1799
  "rustls-webpki",
1687
1800
  "subtle",
1688
1801
  "zeroize",
1689
1802
  ]
1690
1803
 
1804
+ [[package]]
1805
+ name = "rustls-native-certs"
1806
+ version = "0.8.3"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
1809
+ dependencies = [
1810
+ "openssl-probe",
1811
+ "rustls-pki-types",
1812
+ "schannel",
1813
+ "security-framework",
1814
+ ]
1815
+
1691
1816
  [[package]]
1692
1817
  name = "rustls-pki-types"
1693
- version = "1.10.0"
1818
+ version = "1.13.2"
1694
1819
  source = "registry+https://github.com/rust-lang/crates.io-index"
1695
- checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
1820
+ checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
1696
1821
  dependencies = [
1697
1822
  "web-time",
1823
+ "zeroize",
1698
1824
  ]
1699
1825
 
1826
+ [[package]]
1827
+ name = "rustls-platform-verifier"
1828
+ version = "0.6.2"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
1831
+ dependencies = [
1832
+ "core-foundation",
1833
+ "core-foundation-sys",
1834
+ "jni",
1835
+ "log",
1836
+ "once_cell",
1837
+ "rustls",
1838
+ "rustls-native-certs",
1839
+ "rustls-platform-verifier-android",
1840
+ "rustls-webpki",
1841
+ "security-framework",
1842
+ "security-framework-sys",
1843
+ "webpki-root-certs",
1844
+ "windows-sys 0.61.2",
1845
+ ]
1846
+
1847
+ [[package]]
1848
+ name = "rustls-platform-verifier-android"
1849
+ version = "0.1.1"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
1852
+
1700
1853
  [[package]]
1701
1854
  name = "rustls-webpki"
1702
- version = "0.102.8"
1855
+ version = "0.103.8"
1703
1856
  source = "registry+https://github.com/rust-lang/crates.io-index"
1704
- checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
1857
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
1705
1858
  dependencies = [
1859
+ "aws-lc-rs",
1706
1860
  "ring",
1707
1861
  "rustls-pki-types",
1708
1862
  "untrusted",
@@ -1720,6 +1874,47 @@ version = "1.0.11"
1720
1874
  source = "registry+https://github.com/rust-lang/crates.io-index"
1721
1875
  checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
1722
1876
 
1877
+ [[package]]
1878
+ name = "same-file"
1879
+ version = "1.0.6"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1882
+ dependencies = [
1883
+ "winapi-util",
1884
+ ]
1885
+
1886
+ [[package]]
1887
+ name = "schannel"
1888
+ version = "0.1.28"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
1891
+ dependencies = [
1892
+ "windows-sys 0.61.2",
1893
+ ]
1894
+
1895
+ [[package]]
1896
+ name = "security-framework"
1897
+ version = "3.5.1"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
1900
+ dependencies = [
1901
+ "bitflags 2.6.0",
1902
+ "core-foundation",
1903
+ "core-foundation-sys",
1904
+ "libc",
1905
+ "security-framework-sys",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "security-framework-sys"
1910
+ version = "2.15.0"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
1913
+ dependencies = [
1914
+ "core-foundation-sys",
1915
+ "libc",
1916
+ ]
1917
+
1723
1918
  [[package]]
1724
1919
  name = "serde"
1725
1920
  version = "1.0.228"
@@ -1763,18 +1958,6 @@ dependencies = [
1763
1958
  "zmij",
1764
1959
  ]
1765
1960
 
1766
- [[package]]
1767
- name = "serde_urlencoded"
1768
- version = "0.7.1"
1769
- source = "registry+https://github.com/rust-lang/crates.io-index"
1770
- checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1771
- dependencies = [
1772
- "form_urlencoded",
1773
- "itoa",
1774
- "ryu",
1775
- "serde",
1776
- ]
1777
-
1778
1961
  [[package]]
1779
1962
  name = "serde_yaml_ng"
1780
1963
  version = "0.10.0"
@@ -2088,9 +2271,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2088
2271
 
2089
2272
  [[package]]
2090
2273
  name = "tokio"
2091
- version = "1.48.0"
2274
+ version = "1.49.0"
2092
2275
  source = "registry+https://github.com/rust-lang/crates.io-index"
2093
- checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
2276
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
2094
2277
  dependencies = [
2095
2278
  "bytes",
2096
2279
  "libc",
@@ -2284,6 +2467,16 @@ version = "0.0.18"
2284
2467
  source = "registry+https://github.com/rust-lang/crates.io-index"
2285
2468
  checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
2286
2469
 
2470
+ [[package]]
2471
+ name = "walkdir"
2472
+ version = "2.5.0"
2473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2474
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2475
+ dependencies = [
2476
+ "same-file",
2477
+ "winapi-util",
2478
+ ]
2479
+
2287
2480
  [[package]]
2288
2481
  name = "want"
2289
2482
  version = "0.3.1"
@@ -2400,21 +2593,21 @@ dependencies = [
2400
2593
  ]
2401
2594
 
2402
2595
  [[package]]
2403
- name = "webpki-roots"
2404
- version = "0.26.11"
2596
+ name = "webpki-root-certs"
2597
+ version = "1.0.5"
2405
2598
  source = "registry+https://github.com/rust-lang/crates.io-index"
2406
- checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
2599
+ checksum = "36a29fc0408b113f68cf32637857ab740edfafdf460c326cd2afaa2d84cc05dc"
2407
2600
  dependencies = [
2408
- "webpki-roots 1.0.0",
2601
+ "rustls-pki-types",
2409
2602
  ]
2410
2603
 
2411
2604
  [[package]]
2412
- name = "webpki-roots"
2413
- version = "1.0.0"
2605
+ name = "winapi-util"
2606
+ version = "0.1.11"
2414
2607
  source = "registry+https://github.com/rust-lang/crates.io-index"
2415
- checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb"
2608
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2416
2609
  dependencies = [
2417
- "rustls-pki-types",
2610
+ "windows-sys 0.61.2",
2418
2611
  ]
2419
2612
 
2420
2613
  [[package]]
@@ -2482,13 +2675,22 @@ version = "0.42.0"
2482
2675
  source = "registry+https://github.com/rust-lang/crates.io-index"
2483
2676
  checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
2484
2677
  dependencies = [
2485
- "windows_aarch64_gnullvm 0.42.0",
2486
- "windows_aarch64_msvc 0.42.0",
2487
- "windows_i686_gnu 0.42.0",
2488
- "windows_i686_msvc 0.42.0",
2489
- "windows_x86_64_gnu 0.42.0",
2490
- "windows_x86_64_gnullvm 0.42.0",
2491
- "windows_x86_64_msvc 0.42.0",
2678
+ "windows_aarch64_gnullvm 0.42.2",
2679
+ "windows_aarch64_msvc 0.42.2",
2680
+ "windows_i686_gnu 0.42.2",
2681
+ "windows_i686_msvc 0.42.2",
2682
+ "windows_x86_64_gnu 0.42.2",
2683
+ "windows_x86_64_gnullvm 0.42.2",
2684
+ "windows_x86_64_msvc 0.42.2",
2685
+ ]
2686
+
2687
+ [[package]]
2688
+ name = "windows-sys"
2689
+ version = "0.45.0"
2690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2691
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
2692
+ dependencies = [
2693
+ "windows-targets 0.42.2",
2492
2694
  ]
2493
2695
 
2494
2696
  [[package]]
@@ -2497,7 +2699,7 @@ version = "0.52.0"
2497
2699
  source = "registry+https://github.com/rust-lang/crates.io-index"
2498
2700
  checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2499
2701
  dependencies = [
2500
- "windows-targets",
2702
+ "windows-targets 0.52.6",
2501
2703
  ]
2502
2704
 
2503
2705
  [[package]]
@@ -2506,7 +2708,7 @@ version = "0.59.0"
2506
2708
  source = "registry+https://github.com/rust-lang/crates.io-index"
2507
2709
  checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2508
2710
  dependencies = [
2509
- "windows-targets",
2711
+ "windows-targets 0.52.6",
2510
2712
  ]
2511
2713
 
2512
2714
  [[package]]
@@ -2518,6 +2720,21 @@ dependencies = [
2518
2720
  "windows-link",
2519
2721
  ]
2520
2722
 
2723
+ [[package]]
2724
+ name = "windows-targets"
2725
+ version = "0.42.2"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2728
+ dependencies = [
2729
+ "windows_aarch64_gnullvm 0.42.2",
2730
+ "windows_aarch64_msvc 0.42.2",
2731
+ "windows_i686_gnu 0.42.2",
2732
+ "windows_i686_msvc 0.42.2",
2733
+ "windows_x86_64_gnu 0.42.2",
2734
+ "windows_x86_64_gnullvm 0.42.2",
2735
+ "windows_x86_64_msvc 0.42.2",
2736
+ ]
2737
+
2521
2738
  [[package]]
2522
2739
  name = "windows-targets"
2523
2740
  version = "0.52.6"
@@ -2536,9 +2753,9 @@ dependencies = [
2536
2753
 
2537
2754
  [[package]]
2538
2755
  name = "windows_aarch64_gnullvm"
2539
- version = "0.42.0"
2756
+ version = "0.42.2"
2540
2757
  source = "registry+https://github.com/rust-lang/crates.io-index"
2541
- checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
2758
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2542
2759
 
2543
2760
  [[package]]
2544
2761
  name = "windows_aarch64_gnullvm"
@@ -2548,9 +2765,9 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2548
2765
 
2549
2766
  [[package]]
2550
2767
  name = "windows_aarch64_msvc"
2551
- version = "0.42.0"
2768
+ version = "0.42.2"
2552
2769
  source = "registry+https://github.com/rust-lang/crates.io-index"
2553
- checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
2770
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2554
2771
 
2555
2772
  [[package]]
2556
2773
  name = "windows_aarch64_msvc"
@@ -2560,9 +2777,9 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2560
2777
 
2561
2778
  [[package]]
2562
2779
  name = "windows_i686_gnu"
2563
- version = "0.42.0"
2780
+ version = "0.42.2"
2564
2781
  source = "registry+https://github.com/rust-lang/crates.io-index"
2565
- checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
2782
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2566
2783
 
2567
2784
  [[package]]
2568
2785
  name = "windows_i686_gnu"
@@ -2578,9 +2795,9 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2578
2795
 
2579
2796
  [[package]]
2580
2797
  name = "windows_i686_msvc"
2581
- version = "0.42.0"
2798
+ version = "0.42.2"
2582
2799
  source = "registry+https://github.com/rust-lang/crates.io-index"
2583
- checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
2800
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2584
2801
 
2585
2802
  [[package]]
2586
2803
  name = "windows_i686_msvc"
@@ -2590,9 +2807,9 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2590
2807
 
2591
2808
  [[package]]
2592
2809
  name = "windows_x86_64_gnu"
2593
- version = "0.42.0"
2810
+ version = "0.42.2"
2594
2811
  source = "registry+https://github.com/rust-lang/crates.io-index"
2595
- checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
2812
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2596
2813
 
2597
2814
  [[package]]
2598
2815
  name = "windows_x86_64_gnu"
@@ -2602,9 +2819,9 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2602
2819
 
2603
2820
  [[package]]
2604
2821
  name = "windows_x86_64_gnullvm"
2605
- version = "0.42.0"
2822
+ version = "0.42.2"
2606
2823
  source = "registry+https://github.com/rust-lang/crates.io-index"
2607
- checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
2824
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2608
2825
 
2609
2826
  [[package]]
2610
2827
  name = "windows_x86_64_gnullvm"
@@ -2614,9 +2831,9 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2614
2831
 
2615
2832
  [[package]]
2616
2833
  name = "windows_x86_64_msvc"
2617
- version = "0.42.0"
2834
+ version = "0.42.2"
2618
2835
  source = "registry+https://github.com/rust-lang/crates.io-index"
2619
- checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
2836
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2620
2837
 
2621
2838
  [[package]]
2622
2839
  name = "windows_x86_64_msvc"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "lindera-python"
3
- version = "1.4.0"
3
+ version = "1.4.1"
4
4
  edition = "2024"
5
5
  description = "Python binding for Lindera."
6
6
  documentation = "https://docs.rs/lindera-python"
@@ -44,4 +44,4 @@ serde = { version = "1.0.228", features = ["derive"] }
44
44
  serde_json = "1.0.148"
45
45
  num_cpus = "1.17.0"
46
46
 
47
- lindera = "1.5.0"
47
+ lindera = "1.5.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lindera-python
3
- Version: 1.4.0
3
+ Version: 1.4.1
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.5"
184
+ version = "0.7.7"
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.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"},
191
+ {file = "librt-0.7.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e4836c5645f40fbdc275e5670819bde5ab5f2e882290d304e3c6ddab1576a6d0"},
192
+ {file = "librt-0.7.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6ae8aec43117a645a31e5f60e9e3a0797492e747823b9bda6972d521b436b4e8"},
193
+ {file = "librt-0.7.7-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:aea05f701ccd2a76b34f0daf47ca5068176ff553510b614770c90d76ac88df06"},
194
+ {file = "librt-0.7.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7b16ccaeff0ed4355dfb76fe1ea7a5d6d03b5ad27f295f77ee0557bc20a72495"},
195
+ {file = "librt-0.7.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c48c7e150c095d5e3cea7452347ba26094be905d6099d24f9319a8b475fcd3e0"},
196
+ {file = "librt-0.7.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4dcee2f921a8632636d1c37f1bbdb8841d15666d119aa61e5399c5268e7ce02e"},
197
+ {file = "librt-0.7.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:14ef0f4ac3728ffd85bfc58e2f2f48fb4ef4fa871876f13a73a7381d10a9f77c"},
198
+ {file = "librt-0.7.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e4ab69fa37f8090f2d971a5d2bc606c7401170dbdae083c393d6cbf439cb45b8"},
199
+ {file = "librt-0.7.7-cp310-cp310-win32.whl", hash = "sha256:4bf3cc46d553693382d2abf5f5bd493d71bb0f50a7c0beab18aa13a5545c8900"},
200
+ {file = "librt-0.7.7-cp310-cp310-win_amd64.whl", hash = "sha256:f0c8fe5aeadd8a0e5b0598f8a6ee3533135ca50fd3f20f130f9d72baf5c6ac58"},
201
+ {file = "librt-0.7.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a487b71fbf8a9edb72a8c7a456dda0184642d99cd007bc819c0b7ab93676a8ee"},
202
+ {file = "librt-0.7.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f4d4efb218264ecf0f8516196c9e2d1a0679d9fb3bb15df1155a35220062eba8"},
203
+ {file = "librt-0.7.7-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:b8bb331aad734b059c4b450cd0a225652f16889e286b2345af5e2c3c625c3d85"},
204
+ {file = "librt-0.7.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:467dbd7443bda08338fc8ad701ed38cef48194017554f4c798b0a237904b3f99"},
205
+ {file = "librt-0.7.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:50d1d1ee813d2d1a3baf2873634ba506b263032418d16287c92ec1cc9c1a00cb"},
206
+ {file = "librt-0.7.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c7e5070cf3ec92d98f57574da0224f8c73faf1ddd6d8afa0b8c9f6e86997bc74"},
207
+ {file = "librt-0.7.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:bdb9f3d865b2dafe7f9ad7f30ef563c80d0ddd2fdc8cc9b8e4f242f475e34d75"},
208
+ {file = "librt-0.7.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:8185c8497d45164e256376f9da5aed2bb26ff636c798c9dabe313b90e9f25b28"},
209
+ {file = "librt-0.7.7-cp311-cp311-win32.whl", hash = "sha256:44d63ce643f34a903f09ff7ca355aae019a3730c7afd6a3c037d569beeb5d151"},
210
+ {file = "librt-0.7.7-cp311-cp311-win_amd64.whl", hash = "sha256:7d13cc340b3b82134f8038a2bfe7137093693dcad8ba5773da18f95ad6b77a8a"},
211
+ {file = "librt-0.7.7-cp311-cp311-win_arm64.whl", hash = "sha256:983de36b5a83fe9222f4f7dcd071f9b1ac6f3f17c0af0238dadfb8229588f890"},
212
+ {file = "librt-0.7.7-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2a85a1fc4ed11ea0eb0a632459ce004a2d14afc085a50ae3463cd3dfe1ce43fc"},
213
+ {file = "librt-0.7.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c87654e29a35938baead1c4559858f346f4a2a7588574a14d784f300ffba0efd"},
214
+ {file = "librt-0.7.7-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:c9faaebb1c6212c20afd8043cd6ed9de0a47d77f91a6b5b48f4e46ed470703fe"},
215
+ {file = "librt-0.7.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1908c3e5a5ef86b23391448b47759298f87f997c3bd153a770828f58c2bb4630"},
216
+ {file = "librt-0.7.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dbc4900e95a98fc0729523be9d93a8fedebb026f32ed9ffc08acd82e3e181503"},
217
+ {file = "librt-0.7.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a7ea4e1fbd253e5c68ea0fe63d08577f9d288a73f17d82f652ebc61fa48d878d"},
218
+ {file = "librt-0.7.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:ef7699b7a5a244b1119f85c5bbc13f152cd38240cbb2baa19b769433bae98e50"},
219
+ {file = "librt-0.7.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:955c62571de0b181d9e9e0a0303c8bc90d47670a5eff54cf71bf5da61d1899cf"},
220
+ {file = "librt-0.7.7-cp312-cp312-win32.whl", hash = "sha256:1bcd79be209313b270b0e1a51c67ae1af28adad0e0c7e84c3ad4b5cb57aaa75b"},
221
+ {file = "librt-0.7.7-cp312-cp312-win_amd64.whl", hash = "sha256:4353ee891a1834567e0302d4bd5e60f531912179578c36f3d0430f8c5e16b456"},
222
+ {file = "librt-0.7.7-cp312-cp312-win_arm64.whl", hash = "sha256:a76f1d679beccccdf8c1958e732a1dfcd6e749f8821ee59d7bec009ac308c029"},
223
+ {file = "librt-0.7.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8f4a0b0a3c86ba9193a8e23bb18f100d647bf192390ae195d84dfa0a10fb6244"},
224
+ {file = "librt-0.7.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5335890fea9f9e6c4fdf8683061b9ccdcbe47c6dc03ab8e9b68c10acf78be78d"},
225
+ {file = "librt-0.7.7-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:9b4346b1225be26def3ccc6c965751c74868f0578cbcba293c8ae9168483d811"},
226
+ {file = "librt-0.7.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a10b8eebdaca6e9fdbaf88b5aefc0e324b763a5f40b1266532590d5afb268a4c"},
227
+ {file = "librt-0.7.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:067be973d90d9e319e6eb4ee2a9b9307f0ecd648b8a9002fa237289a4a07a9e7"},
228
+ {file = "librt-0.7.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:23d2299ed007812cccc1ecef018db7d922733382561230de1f3954db28433977"},
229
+ {file = "librt-0.7.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:6b6f8ea465524aa4c7420c7cc4ca7d46fe00981de8debc67b1cc2e9957bb5b9d"},
230
+ {file = "librt-0.7.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f8df32a99cc46eb0ee90afd9ada113ae2cafe7e8d673686cf03ec53e49635439"},
231
+ {file = "librt-0.7.7-cp313-cp313-win32.whl", hash = "sha256:86f86b3b785487c7760247bcdac0b11aa8bf13245a13ed05206286135877564b"},
232
+ {file = "librt-0.7.7-cp313-cp313-win_amd64.whl", hash = "sha256:4862cb2c702b1f905c0503b72d9d4daf65a7fdf5a9e84560e563471e57a56949"},
233
+ {file = "librt-0.7.7-cp313-cp313-win_arm64.whl", hash = "sha256:0996c83b1cb43c00e8c87835a284f9057bc647abd42b5871e5f941d30010c832"},
234
+ {file = "librt-0.7.7-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:23daa1ab0512bafdd677eb1bfc9611d8ffbe2e328895671e64cb34166bc1b8c8"},
235
+ {file = "librt-0.7.7-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:558a9e5a6f3cc1e20b3168fb1dc802d0d8fa40731f6e9932dcc52bbcfbd37111"},
236
+ {file = "librt-0.7.7-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:2567cb48dc03e5b246927ab35cbb343376e24501260a9b5e30b8e255dca0d1d2"},
237
+ {file = "librt-0.7.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6066c638cdf85ff92fc6f932d2d73c93a0e03492cdfa8778e6d58c489a3d7259"},
238
+ {file = "librt-0.7.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a609849aca463074c17de9cda173c276eb8fee9e441053529e7b9e249dc8b8ee"},
239
+ {file = "librt-0.7.7-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:add4e0a000858fe9bb39ed55f31085506a5c38363e6eb4a1e5943a10c2bfc3d1"},
240
+ {file = "librt-0.7.7-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:a3bfe73a32bd0bdb9a87d586b05a23c0a1729205d79df66dee65bb2e40d671ba"},
241
+ {file = "librt-0.7.7-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:0ecce0544d3db91a40f8b57ae26928c02130a997b540f908cefd4d279d6c5848"},
242
+ {file = "librt-0.7.7-cp314-cp314-win32.whl", hash = "sha256:8f7a74cf3a80f0c3b0ec75b0c650b2f0a894a2cec57ef75f6f72c1e82cdac61d"},
243
+ {file = "librt-0.7.7-cp314-cp314-win_amd64.whl", hash = "sha256:3d1fe2e8df3268dd6734dba33ededae72ad5c3a859b9577bc00b715759c5aaab"},
244
+ {file = "librt-0.7.7-cp314-cp314-win_arm64.whl", hash = "sha256:2987cf827011907d3dfd109f1be0d61e173d68b1270107bb0e89f2fca7f2ed6b"},
245
+ {file = "librt-0.7.7-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:8e92c8de62b40bfce91d5e12c6e8b15434da268979b1af1a6589463549d491e6"},
246
+ {file = "librt-0.7.7-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:f683dcd49e2494a7535e30f779aa1ad6e3732a019d80abe1309ea91ccd3230e3"},
247
+ {file = "librt-0.7.7-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:9b15e5d17812d4d629ff576699954f74e2cc24a02a4fc401882dd94f81daba45"},
248
+ {file = "librt-0.7.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c084841b879c4d9b9fa34e5d5263994f21aea7fd9c6add29194dbb41a6210536"},
249
+ {file = "librt-0.7.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:10c8fb9966f84737115513fecbaf257f9553d067a7dd45a69c2c7e5339e6a8dc"},
250
+ {file = "librt-0.7.7-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:9b5fb1ecb2c35362eab2dbd354fd1efa5a8440d3e73a68be11921042a0edc0ff"},
251
+ {file = "librt-0.7.7-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:d1454899909d63cc9199a89fcc4f81bdd9004aef577d4ffc022e600c412d57f3"},
252
+ {file = "librt-0.7.7-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:7ef28f2e7a016b29792fe0a2dd04dec75725b32a1264e390c366103f834a9c3a"},
253
+ {file = "librt-0.7.7-cp314-cp314t-win32.whl", hash = "sha256:5e419e0db70991b6ba037b70c1d5bbe92b20ddf82f31ad01d77a347ed9781398"},
254
+ {file = "librt-0.7.7-cp314-cp314t-win_amd64.whl", hash = "sha256:d6b7d93657332c817b8d674ef6bf1ab7796b4f7ce05e420fd45bd258a72ac804"},
255
+ {file = "librt-0.7.7-cp314-cp314t-win_arm64.whl", hash = "sha256:142c2cd91794b79fd0ce113bd658993b7ede0fe93057668c2f98a45ca00b7e91"},
256
+ {file = "librt-0.7.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c8ffe3431d98cc043a14e88b21288b5ec7ee12cb01260e94385887f285ef9389"},
257
+ {file = "librt-0.7.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e40d20ae1722d6b8ea6acf4597e789604649dcd9c295eb7361a28225bc2e9e12"},
258
+ {file = "librt-0.7.7-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:f2cb63c49bc96847c3bb8dca350970e4dcd19936f391cfdfd057dcb37c4fa97e"},
259
+ {file = "librt-0.7.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8f2f8dcf5ab9f80fb970c6fd780b398efb2f50c1962485eb8d3ab07788595a48"},
260
+ {file = "librt-0.7.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a1f5cc41a570269d1be7a676655875e3a53de4992a9fa38efb7983e97cf73d7c"},
261
+ {file = "librt-0.7.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:ff1fb2dfef035549565a4124998fadcb7a3d4957131ddf004a56edeb029626b3"},
262
+ {file = "librt-0.7.7-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ab2a2a9cd7d044e1a11ca64a86ad3361d318176924bbe5152fbc69f99be20b8c"},
263
+ {file = "librt-0.7.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:ad3fc2d859a709baf9dd9607bb72f599b1cfb8a39eafd41307d0c3c4766763cb"},
264
+ {file = "librt-0.7.7-cp39-cp39-win32.whl", hash = "sha256:f83c971eb9d2358b6a18da51dc0ae00556ac7c73104dde16e9e14c15aaf685ca"},
265
+ {file = "librt-0.7.7-cp39-cp39-win_amd64.whl", hash = "sha256:264720fc288c86039c091a4ad63419a5d7cabbf1c1c9933336a957ed2483e570"},
266
+ {file = "librt-0.7.7.tar.gz", hash = "sha256:81d957b069fed1890953c3b9c3895c7689960f233eea9a1d9607f71ce7f00b2c"},
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.4.0"
6
+ version = "1.4.1"
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