lindera-python 1.2.0__tar.gz → 1.3.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 (53) hide show
  1. {lindera_python-1.2.0 → lindera_python-1.3.1}/Cargo.lock +56 -99
  2. {lindera_python-1.2.0 → lindera_python-1.3.1}/Cargo.toml +3 -3
  3. {lindera_python-1.2.0 → lindera_python-1.3.1}/PKG-INFO +1 -1
  4. {lindera_python-1.2.0 → lindera_python-1.3.1}/poetry.lock +35 -35
  5. {lindera_python-1.2.0 → lindera_python-1.3.1}/pyproject.toml +3 -3
  6. lindera_python-1.3.1/src/dictionary.rs +302 -0
  7. {lindera_python-1.2.0 → lindera_python-1.3.1}/src/error.rs +8 -0
  8. {lindera_python-1.2.0 → lindera_python-1.3.1}/src/lib.rs +39 -0
  9. {lindera_python-1.2.0 → lindera_python-1.3.1}/src/metadata.rs +47 -0
  10. {lindera_python-1.2.0 → lindera_python-1.3.1}/src/mode.rs +46 -0
  11. {lindera_python-1.2.0 → lindera_python-1.3.1}/src/schema.rs +50 -0
  12. {lindera_python-1.2.0 → lindera_python-1.3.1}/src/tokenizer.rs +160 -1
  13. {lindera_python-1.2.0 → lindera_python-1.3.1}/src/trainer.rs +29 -1
  14. {lindera_python-1.2.0 → lindera_python-1.3.1}/src/util.rs +37 -0
  15. lindera_python-1.2.0/src/dictionary.rs +0 -149
  16. {lindera_python-1.2.0 → lindera_python-1.3.1}/.github/FUNDING.yml +0 -0
  17. {lindera_python-1.2.0 → lindera_python-1.3.1}/.github/dependabot.yml +0 -0
  18. {lindera_python-1.2.0 → lindera_python-1.3.1}/.github/workflows/periodic.yml +0 -0
  19. {lindera_python-1.2.0 → lindera_python-1.3.1}/.github/workflows/regression.yml +0 -0
  20. {lindera_python-1.2.0 → lindera_python-1.3.1}/.github/workflows/release.yml +0 -0
  21. {lindera_python-1.2.0 → lindera_python-1.3.1}/.gitignore +0 -0
  22. {lindera_python-1.2.0 → lindera_python-1.3.1}/CHANGES.md +0 -0
  23. {lindera_python-1.2.0 → lindera_python-1.3.1}/LICENSE +0 -0
  24. {lindera_python-1.2.0 → lindera_python-1.3.1}/Makefile +0 -0
  25. {lindera_python-1.2.0 → lindera_python-1.3.1}/README.md +0 -0
  26. {lindera_python-1.2.0 → lindera_python-1.3.1}/examples/build_ipadic.py +0 -0
  27. {lindera_python-1.2.0 → lindera_python-1.3.1}/examples/tokenize.py +0 -0
  28. {lindera_python-1.2.0 → lindera_python-1.3.1}/examples/tokenize_with_decompose.py +0 -0
  29. {lindera_python-1.2.0 → lindera_python-1.3.1}/examples/tokenize_with_filters.py +0 -0
  30. {lindera_python-1.2.0 → lindera_python-1.3.1}/examples/tokenize_with_userdict.py +0 -0
  31. {lindera_python-1.2.0 → lindera_python-1.3.1}/examples/train_and_export.py +0 -0
  32. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/bocchan.txt +0 -0
  33. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/cc-cedict_metadata.json +0 -0
  34. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/cc-cedict_simple_userdic.bin +0 -0
  35. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/cc-cedict_simple_userdic.csv +0 -0
  36. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/ipadic-neologd_metadata.json +0 -0
  37. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/ipadic_detailed_userdic.csv +0 -0
  38. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/ipadic_metadata.json +0 -0
  39. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/ipadic_mixed_userdic.csv +0 -0
  40. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/ipadic_simple_userdic.bin +0 -0
  41. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/ipadic_simple_userdic.csv +0 -0
  42. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/ipadic_userdic_insufficient_number_of_fields.csv +0 -0
  43. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/ipadic_userdic_invalid_word_cost.csv +0 -0
  44. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/ko-dic_metadata.json +0 -0
  45. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/ko-dic_simple_userdic.bin +0 -0
  46. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/ko-dic_simple_userdic.csv +0 -0
  47. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/lindera.yml +0 -0
  48. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/unidic_metadata.json +0 -0
  49. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/unidic_simple_userdic.bin +0 -0
  50. {lindera_python-1.2.0 → lindera_python-1.3.1}/resources/unidic_simple_userdic.csv +0 -0
  51. {lindera_python-1.2.0 → lindera_python-1.3.1}/tests/__init__py +0 -0
  52. {lindera_python-1.2.0 → lindera_python-1.3.1}/tests/test_tokenize_ipadic.py +0 -0
  53. {lindera_python-1.2.0 → lindera_python-1.3.1}/tests/test_trainer.py +0 -0
@@ -2,15 +2,6 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 4
4
4
 
5
- [[package]]
6
- name = "addr2line"
7
- version = "0.24.2"
8
- source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
- dependencies = [
11
- "gimli",
12
- ]
13
-
14
5
  [[package]]
15
6
  name = "adler2"
16
7
  version = "2.0.0"
@@ -97,21 +88,6 @@ version = "1.1.0"
97
88
  source = "registry+https://github.com/rust-lang/crates.io-index"
98
89
  checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
99
90
 
100
- [[package]]
101
- name = "backtrace"
102
- version = "0.3.74"
103
- source = "registry+https://github.com/rust-lang/crates.io-index"
104
- checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
105
- dependencies = [
106
- "addr2line",
107
- "cfg-if",
108
- "libc",
109
- "miniz_oxide",
110
- "object",
111
- "rustc-demangle",
112
- "windows-targets",
113
- ]
114
-
115
91
  [[package]]
116
92
  name = "base64"
117
93
  version = "0.22.1"
@@ -451,9 +427,9 @@ dependencies = [
451
427
 
452
428
  [[package]]
453
429
  name = "flate2"
454
- version = "1.1.2"
430
+ version = "1.1.4"
455
431
  source = "registry+https://github.com/rust-lang/crates.io-index"
456
- checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
432
+ checksum = "dc5a4e564e38c699f2880d3fda590bedc2e69f3f84cd48b457bd892ce61d0aa9"
457
433
  dependencies = [
458
434
  "crc32fast",
459
435
  "miniz_oxide",
@@ -540,12 +516,6 @@ dependencies = [
540
516
  "wasm-bindgen",
541
517
  ]
542
518
 
543
- [[package]]
544
- name = "gimli"
545
- version = "0.31.1"
546
- source = "registry+https://github.com/rust-lang/crates.io-index"
547
- checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
548
-
549
519
  [[package]]
550
520
  name = "glob"
551
521
  version = "0.3.3"
@@ -876,17 +846,6 @@ dependencies = [
876
846
  "cfg-if",
877
847
  ]
878
848
 
879
- [[package]]
880
- name = "io-uring"
881
- version = "0.7.9"
882
- source = "registry+https://github.com/rust-lang/crates.io-index"
883
- checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
884
- dependencies = [
885
- "bitflags 2.6.0",
886
- "cfg-if",
887
- "libc",
888
- ]
889
-
890
849
  [[package]]
891
850
  name = "ipnet"
892
851
  version = "2.10.1"
@@ -947,9 +906,9 @@ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
947
906
 
948
907
  [[package]]
949
908
  name = "lindera"
950
- version = "1.3.2"
909
+ version = "1.4.1"
951
910
  source = "registry+https://github.com/rust-lang/crates.io-index"
952
- checksum = "3a7a4c5973b778eb6cfe2b78e33840c32601e7fddcc9379d764171ea10600337"
911
+ checksum = "f0e109baf46c2494539663466a49d54bd62f655a4356757269b72d1e1019ff2c"
953
912
  dependencies = [
954
913
  "anyhow",
955
914
  "bincode",
@@ -979,9 +938,9 @@ dependencies = [
979
938
 
980
939
  [[package]]
981
940
  name = "lindera-cc-cedict"
982
- version = "1.3.2"
941
+ version = "1.4.1"
983
942
  source = "registry+https://github.com/rust-lang/crates.io-index"
984
- checksum = "a3f9ca6f3c2d0dd3493eca7917d712a9b2a6ea0a60f0e518d3c5710eee0ab719"
943
+ checksum = "965ef21c68d3f5453076366a58d05c154e639a5d1e9b0d86a048a6a3486fb1cc"
985
944
  dependencies = [
986
945
  "anyhow",
987
946
  "bincode",
@@ -995,9 +954,9 @@ dependencies = [
995
954
 
996
955
  [[package]]
997
956
  name = "lindera-dictionary"
998
- version = "1.3.2"
957
+ version = "1.4.1"
999
958
  source = "registry+https://github.com/rust-lang/crates.io-index"
1000
- checksum = "88c7e47e42a6831f6a12eca3b91c4ef2c9ab2425c6d6c5ffb51abcd0fec2749e"
959
+ checksum = "d493e407b18951da7852d2b021b1f7e001a2963accb17a321c8fd48b60a9e343"
1001
960
  dependencies = [
1002
961
  "anyhow",
1003
962
  "bincode",
@@ -1030,9 +989,9 @@ dependencies = [
1030
989
 
1031
990
  [[package]]
1032
991
  name = "lindera-ipadic"
1033
- version = "1.3.2"
992
+ version = "1.4.1"
1034
993
  source = "registry+https://github.com/rust-lang/crates.io-index"
1035
- checksum = "ddc56f00c12483d36cbfd0d5fd51f040a40729cbfe9976da47a77795c2af8220"
994
+ checksum = "567746f82c01052e05539f2731ce2ad62eddebe5ae96453e9534a87bc9cfafc9"
1036
995
  dependencies = [
1037
996
  "anyhow",
1038
997
  "bincode",
@@ -1046,9 +1005,9 @@ dependencies = [
1046
1005
 
1047
1006
  [[package]]
1048
1007
  name = "lindera-ipadic-neologd"
1049
- version = "1.3.2"
1008
+ version = "1.4.1"
1050
1009
  source = "registry+https://github.com/rust-lang/crates.io-index"
1051
- checksum = "211486971de259f1cb3aa9539f08df6bea7a88bf82280f79614717f3b254899a"
1010
+ checksum = "350f17ced5cbf2964ee29ddef1094703fd1df7c20d464dec6106b7b7ee038030"
1052
1011
  dependencies = [
1053
1012
  "anyhow",
1054
1013
  "bincode",
@@ -1062,9 +1021,9 @@ dependencies = [
1062
1021
 
1063
1022
  [[package]]
1064
1023
  name = "lindera-ko-dic"
1065
- version = "1.3.2"
1024
+ version = "1.4.1"
1066
1025
  source = "registry+https://github.com/rust-lang/crates.io-index"
1067
- checksum = "41ccead1eb20dfbcbd0ea45e34a26a32257dd81b5fcd10fb1fb17cf3d78c856f"
1026
+ checksum = "d2dda2995055967b409c4d1f311b7db796a3279c78607838325f8892a1542960"
1068
1027
  dependencies = [
1069
1028
  "anyhow",
1070
1029
  "bincode",
@@ -1078,7 +1037,7 @@ dependencies = [
1078
1037
 
1079
1038
  [[package]]
1080
1039
  name = "lindera-python"
1081
- version = "1.2.0"
1040
+ version = "1.3.1"
1082
1041
  dependencies = [
1083
1042
  "lindera",
1084
1043
  "num_cpus",
@@ -1089,9 +1048,9 @@ dependencies = [
1089
1048
 
1090
1049
  [[package]]
1091
1050
  name = "lindera-unidic"
1092
- version = "1.3.2"
1051
+ version = "1.4.1"
1093
1052
  source = "registry+https://github.com/rust-lang/crates.io-index"
1094
- checksum = "07d87dd63970ac24bc41024900101366c2bf9f54e5dbd2c3139d2bf0342a1db8"
1053
+ checksum = "e6a03bdf3acbd493e95ac182fef6194c09556a04dcbebbaeddca47d5ae6ec5f6"
1095
1054
  dependencies = [
1096
1055
  "anyhow",
1097
1056
  "bincode",
@@ -1164,6 +1123,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
1123
  checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
1165
1124
  dependencies = [
1166
1125
  "adler2",
1126
+ "simd-adler32",
1167
1127
  ]
1168
1128
 
1169
1129
  [[package]]
@@ -1221,15 +1181,6 @@ dependencies = [
1221
1181
  "libc",
1222
1182
  ]
1223
1183
 
1224
- [[package]]
1225
- name = "object"
1226
- version = "0.36.5"
1227
- source = "registry+https://github.com/rust-lang/crates.io-index"
1228
- checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
1229
- dependencies = [
1230
- "memchr",
1231
- ]
1232
-
1233
1184
  [[package]]
1234
1185
  name = "once_cell"
1235
1186
  version = "1.21.3"
@@ -1292,9 +1243,9 @@ dependencies = [
1292
1243
 
1293
1244
  [[package]]
1294
1245
  name = "pyo3"
1295
- version = "0.26.0"
1246
+ version = "0.27.1"
1296
1247
  source = "registry+https://github.com/rust-lang/crates.io-index"
1297
- checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
1248
+ checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
1298
1249
  dependencies = [
1299
1250
  "indoc",
1300
1251
  "libc",
@@ -1309,18 +1260,18 @@ dependencies = [
1309
1260
 
1310
1261
  [[package]]
1311
1262
  name = "pyo3-build-config"
1312
- version = "0.26.0"
1263
+ version = "0.27.1"
1313
1264
  source = "registry+https://github.com/rust-lang/crates.io-index"
1314
- checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
1265
+ checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
1315
1266
  dependencies = [
1316
1267
  "target-lexicon",
1317
1268
  ]
1318
1269
 
1319
1270
  [[package]]
1320
1271
  name = "pyo3-ffi"
1321
- version = "0.26.0"
1272
+ version = "0.27.1"
1322
1273
  source = "registry+https://github.com/rust-lang/crates.io-index"
1323
- checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
1274
+ checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
1324
1275
  dependencies = [
1325
1276
  "libc",
1326
1277
  "pyo3-build-config",
@@ -1328,9 +1279,9 @@ dependencies = [
1328
1279
 
1329
1280
  [[package]]
1330
1281
  name = "pyo3-macros"
1331
- version = "0.26.0"
1282
+ version = "0.27.1"
1332
1283
  source = "registry+https://github.com/rust-lang/crates.io-index"
1333
- checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
1284
+ checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
1334
1285
  dependencies = [
1335
1286
  "proc-macro2",
1336
1287
  "pyo3-macros-backend",
@@ -1340,9 +1291,9 @@ dependencies = [
1340
1291
 
1341
1292
  [[package]]
1342
1293
  name = "pyo3-macros-backend"
1343
- version = "0.26.0"
1294
+ version = "0.27.1"
1344
1295
  source = "registry+https://github.com/rust-lang/crates.io-index"
1345
- checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
1296
+ checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
1346
1297
  dependencies = [
1347
1298
  "heck",
1348
1299
  "proc-macro2",
@@ -1500,9 +1451,9 @@ dependencies = [
1500
1451
 
1501
1452
  [[package]]
1502
1453
  name = "regex"
1503
- version = "1.11.3"
1454
+ version = "1.12.2"
1504
1455
  source = "registry+https://github.com/rust-lang/crates.io-index"
1505
- checksum = "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c"
1456
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1506
1457
  dependencies = [
1507
1458
  "aho-corasick",
1508
1459
  "memchr",
@@ -1512,9 +1463,9 @@ dependencies = [
1512
1463
 
1513
1464
  [[package]]
1514
1465
  name = "regex-automata"
1515
- version = "0.4.11"
1466
+ version = "0.4.13"
1516
1467
  source = "registry+https://github.com/rust-lang/crates.io-index"
1517
- checksum = "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad"
1468
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1518
1469
  dependencies = [
1519
1470
  "aho-corasick",
1520
1471
  "memchr",
@@ -1529,9 +1480,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1529
1480
 
1530
1481
  [[package]]
1531
1482
  name = "reqwest"
1532
- version = "0.12.23"
1483
+ version = "0.12.24"
1533
1484
  source = "registry+https://github.com/rust-lang/crates.io-index"
1534
- checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb"
1485
+ checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
1535
1486
  dependencies = [
1536
1487
  "base64",
1537
1488
  "bytes",
@@ -1594,12 +1545,6 @@ dependencies = [
1594
1545
  "hashbrown",
1595
1546
  ]
1596
1547
 
1597
- [[package]]
1598
- name = "rustc-demangle"
1599
- version = "0.1.24"
1600
- source = "registry+https://github.com/rust-lang/crates.io-index"
1601
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1602
-
1603
1548
  [[package]]
1604
1549
  name = "rustc-hash"
1605
1550
  version = "2.1.1"
@@ -1739,6 +1684,12 @@ version = "1.3.0"
1739
1684
  source = "registry+https://github.com/rust-lang/crates.io-index"
1740
1685
  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1741
1686
 
1687
+ [[package]]
1688
+ name = "simd-adler32"
1689
+ version = "0.3.7"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
1692
+
1742
1693
  [[package]]
1743
1694
  name = "slab"
1744
1695
  version = "0.4.9"
@@ -2021,27 +1972,24 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2021
1972
 
2022
1973
  [[package]]
2023
1974
  name = "tokio"
2024
- version = "1.47.1"
1975
+ version = "1.48.0"
2025
1976
  source = "registry+https://github.com/rust-lang/crates.io-index"
2026
- checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
1977
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
2027
1978
  dependencies = [
2028
- "backtrace",
2029
1979
  "bytes",
2030
- "io-uring",
2031
1980
  "libc",
2032
1981
  "mio",
2033
1982
  "pin-project-lite",
2034
- "slab",
2035
1983
  "socket2 0.6.0",
2036
1984
  "tokio-macros",
2037
- "windows-sys 0.59.0",
1985
+ "windows-sys 0.61.2",
2038
1986
  ]
2039
1987
 
2040
1988
  [[package]]
2041
1989
  name = "tokio-macros"
2042
- version = "2.5.0"
1990
+ version = "2.6.0"
2043
1991
  source = "registry+https://github.com/rust-lang/crates.io-index"
2044
- checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
1992
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2045
1993
  dependencies = [
2046
1994
  "proc-macro2",
2047
1995
  "quote",
@@ -2380,9 +2328,9 @@ dependencies = [
2380
2328
 
2381
2329
  [[package]]
2382
2330
  name = "windows-link"
2383
- version = "0.2.0"
2331
+ version = "0.2.1"
2384
2332
  source = "registry+https://github.com/rust-lang/crates.io-index"
2385
- checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
2333
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2386
2334
 
2387
2335
  [[package]]
2388
2336
  name = "windows-result"
@@ -2435,6 +2383,15 @@ dependencies = [
2435
2383
  "windows-targets",
2436
2384
  ]
2437
2385
 
2386
+ [[package]]
2387
+ name = "windows-sys"
2388
+ version = "0.61.2"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2391
+ dependencies = [
2392
+ "windows-link",
2393
+ ]
2394
+
2438
2395
  [[package]]
2439
2396
  name = "windows-targets"
2440
2397
  version = "0.52.6"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "lindera-python"
3
- version = "1.2.0"
3
+ version = "1.3.1"
4
4
  edition = "2024"
5
5
  description = "Python binding for Lindera."
6
6
  documentation = "https://docs.rs/lindera-python"
@@ -39,9 +39,9 @@ train = ["lindera/train"] # Enable training functionality
39
39
  default = ["train"] # No directories included
40
40
 
41
41
  [dependencies]
42
- pyo3 = { version = "0.26.0", features = ["extension-module"] }
42
+ pyo3 = { version = "0.27.1", features = ["extension-module"] }
43
43
  serde = { version = "1.0.228", features = ["derive"] }
44
44
  serde_json = "1.0.145"
45
45
  num_cpus = "1.17.0"
46
46
 
47
- lindera = "1.3.2"
47
+ lindera = "1.4.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lindera-python
3
- Version: 1.2.0
3
+ Version: 1.3.1
4
4
  Classifier: Programming Language :: Python :: 3
5
5
  Classifier: Programming Language :: Python :: 3.8
6
6
  Classifier: Programming Language :: Python :: 3.9
@@ -125,26 +125,26 @@ dev = ["pyTest", "pyTest-cov"]
125
125
 
126
126
  [[package]]
127
127
  name = "iniconfig"
128
- version = "2.1.0"
128
+ version = "2.3.0"
129
129
  description = "brain-dead simple config-ini parsing"
130
130
  optional = false
131
- python-versions = ">=3.8"
131
+ python-versions = ">=3.10"
132
132
  groups = ["dev"]
133
133
  files = [
134
- {file = "iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760"},
135
- {file = "iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7"},
134
+ {file = "iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12"},
135
+ {file = "iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730"},
136
136
  ]
137
137
 
138
138
  [[package]]
139
139
  name = "isort"
140
- version = "6.1.0"
140
+ version = "7.0.0"
141
141
  description = "A Python utility / library to sort Python imports."
142
142
  optional = false
143
- python-versions = ">=3.9.0"
143
+ python-versions = ">=3.10.0"
144
144
  groups = ["dev"]
145
145
  files = [
146
- {file = "isort-6.1.0-py3-none-any.whl", hash = "sha256:58d8927ecce74e5087aef019f778d4081a3b6c98f15a80ba35782ca8a2097784"},
147
- {file = "isort-6.1.0.tar.gz", hash = "sha256:9b8f96a14cfee0677e78e941ff62f03769a06d412aabb9e2a90487b3b7e8d481"},
146
+ {file = "isort-7.0.0-py3-none-any.whl", hash = "sha256:1bcabac8bc3c36c7fb7b98a76c8abb18e0f841a3ba81decac7691008592499c1"},
147
+ {file = "isort-7.0.0.tar.gz", hash = "sha256:5513527951aadb3ac4292a41a16cbc50dd1642432f5e8c20057d414bdafb4187"},
148
148
  ]
149
149
 
150
150
  [package.extras]
@@ -153,26 +153,26 @@ plugins = ["setuptools"]
153
153
 
154
154
  [[package]]
155
155
  name = "maturin"
156
- version = "1.9.4"
156
+ version = "1.9.6"
157
157
  description = "Build and publish crates with pyo3, cffi and uniffi bindings as well as rust binaries as python packages"
158
158
  optional = false
159
159
  python-versions = ">=3.7"
160
160
  groups = ["main"]
161
161
  files = [
162
- {file = "maturin-1.9.4-py3-none-linux_armv6l.whl", hash = "sha256:6ff37578e3f5fdbe685110d45f60af1f5a7dfce70a1e26dfe3810af66853ecae"},
163
- {file = "maturin-1.9.4-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:f3837bb53611b2dafa1c090436c330f2d743ba305ef00d8801a371f4495e7e1b"},
164
- {file = "maturin-1.9.4-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:4227d627d8e3bfe45877a8d65e9d8351a9d01434549f0da75d2c06a1b570de58"},
165
- {file = "maturin-1.9.4-py3-none-manylinux_2_12_i686.manylinux2010_i686.musllinux_1_1_i686.whl", hash = "sha256:1bb2aa0fa29032e9c5aac03ac400396ddea12cadef242f8967e9c8ef715313a1"},
166
- {file = "maturin-1.9.4-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.musllinux_1_1_x86_64.whl", hash = "sha256:a0868d52934c8a5d1411b42367633fdb5cd5515bec47a534192282167448ec30"},
167
- {file = "maturin-1.9.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:68b7b833b25741c0f553b78e8b9e095b31ae7c6611533b3c7b71f84c2cb8fc44"},
168
- {file = "maturin-1.9.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl", hash = "sha256:08dc86312afee55af778af919818632e35d8d0464ccd79cb86700d9ea560ccd7"},
169
- {file = "maturin-1.9.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.musllinux_1_1_ppc64le.whl", hash = "sha256:ef20ffdd943078c4c3699c29fb2ed722bb6b4419efdade6642d1dbf248f94a70"},
170
- {file = "maturin-1.9.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:368e958468431dfeec80f75eea9639b4356d8c42428b0128444424b083fecfb0"},
171
- {file = "maturin-1.9.4-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:273f879214f63f79bfe851cd7d541f8150bdbfae5dfdc3c0c4d125d02d1f41b4"},
172
- {file = "maturin-1.9.4-py3-none-win32.whl", hash = "sha256:ed2e54d132ace7e61829bd49709331007dd9a2cc78937f598aa76a4f69b6804d"},
173
- {file = "maturin-1.9.4-py3-none-win_amd64.whl", hash = "sha256:8e450bb2c9afdf38a0059ee2e1ec2b17323f152b59c16f33eb9c74edaf1f9f79"},
174
- {file = "maturin-1.9.4-py3-none-win_arm64.whl", hash = "sha256:7a6f980a9b67a5c13c844c268eabd855b54a6a765df4b4bb07d15a990572a4c9"},
175
- {file = "maturin-1.9.4.tar.gz", hash = "sha256:235163a0c99bc6f380fb8786c04fd14dcf6cd622ff295ea3de525015e6ac40cf"},
162
+ {file = "maturin-1.9.6-py3-none-linux_armv6l.whl", hash = "sha256:26e3ab1a42a7145824210e9d763f6958f2c46afb1245ddd0bab7d78b1f59bb3f"},
163
+ {file = "maturin-1.9.6-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:5263dda3f71feef2e4122baf5c4620e4b3710dbb7f2121f85a337182de214369"},
164
+ {file = "maturin-1.9.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:fe78262c2800c92f67d1ce3c0f6463f958a692cc67bfb572e5dbf5b4b696a8ba"},
165
+ {file = "maturin-1.9.6-py3-none-manylinux_2_12_i686.manylinux2010_i686.musllinux_1_1_i686.whl", hash = "sha256:7ab827c6e8c022eb2e1e7fb6deede54549c8460b20ccc2e9268cc6e8cde957a8"},
166
+ {file = "maturin-1.9.6-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.musllinux_1_1_x86_64.whl", hash = "sha256:0246202377c49449315305209f45c8ecef6e2d6bd27a04b5b6f1ab3e4ea47238"},
167
+ {file = "maturin-1.9.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:f5bac167700fbb6f8c8ed1a97b494522554b4432d7578e11403b894b6a91d99f"},
168
+ {file = "maturin-1.9.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl", hash = "sha256:7f53d3b1d8396d3fea3e1ee5fd37558bca5719090f3d194ba1c02b0b56327ae3"},
169
+ {file = "maturin-1.9.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.musllinux_1_1_ppc64le.whl", hash = "sha256:7f506eb358386d94d6ec3208c003130cf4b69cab26034fc0cbbf8bf83afa4c2e"},
170
+ {file = "maturin-1.9.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2d6984ab690af509f525dbd2b130714207c06ebb14a5814edbe1e42b17ae0de"},
171
+ {file = "maturin-1.9.6-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:5c2252b0956bb331460ac750c805ddf0d9b44442449fc1f16e3b66941689d0bc"},
172
+ {file = "maturin-1.9.6-py3-none-win32.whl", hash = "sha256:f2c58d29ebdd4346fd004e6be213d071fdd94a77a16aa91474a21a4f9dbf6309"},
173
+ {file = "maturin-1.9.6-py3-none-win_amd64.whl", hash = "sha256:1b39a5d82572c240d20d9e8be024d722dfb311d330c5e28ddeb615211755941a"},
174
+ {file = "maturin-1.9.6-py3-none-win_arm64.whl", hash = "sha256:ac02a30083553d2a781c10cd6f5480119bf6692fd177e743267406cad2ad198c"},
175
+ {file = "maturin-1.9.6.tar.gz", hash = "sha256:2c2ae37144811d365509889ed7220b0598487f1278c2441829c3abf56cc6324a"},
176
176
  ]
177
177
 
178
178
  [package.extras]
@@ -311,20 +311,20 @@ files = [
311
311
 
312
312
  [[package]]
313
313
  name = "platformdirs"
314
- version = "4.4.0"
314
+ version = "4.5.0"
315
315
  description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`."
316
316
  optional = false
317
- python-versions = ">=3.9"
317
+ python-versions = ">=3.10"
318
318
  groups = ["dev"]
319
319
  files = [
320
- {file = "platformdirs-4.4.0-py3-none-any.whl", hash = "sha256:abd01743f24e5287cd7a5db3752faf1a2d65353f38ec26d98e25a6db65958c85"},
321
- {file = "platformdirs-4.4.0.tar.gz", hash = "sha256:ca753cf4d81dc309bc67b0ea38fd15dc97bc30ce419a7f58d13eb3bf14c4febf"},
320
+ {file = "platformdirs-4.5.0-py3-none-any.whl", hash = "sha256:e578a81bb873cbb89a41fcc904c7ef523cc18284b7e3b3ccf06aca1403b7ebd3"},
321
+ {file = "platformdirs-4.5.0.tar.gz", hash = "sha256:70ddccdd7c99fc5942e9fc25636a8b34d04c24b335100223152c2803e4063312"},
322
322
  ]
323
323
 
324
324
  [package.extras]
325
- docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.1.3)", "sphinx-autodoc-typehints (>=3)"]
326
- test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.4)", "pytest-cov (>=6)", "pytest-mock (>=3.14)"]
327
- type = ["mypy (>=1.14.1)"]
325
+ docs = ["furo (>=2025.9.25)", "proselint (>=0.14)", "sphinx (>=8.2.3)", "sphinx-autodoc-typehints (>=3.2)"]
326
+ test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.4.2)", "pytest-cov (>=7)", "pytest-mock (>=3.15.1)"]
327
+ type = ["mypy (>=1.18.2)"]
328
328
 
329
329
  [[package]]
330
330
  name = "pluggy"
@@ -405,14 +405,14 @@ dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "requests
405
405
 
406
406
  [[package]]
407
407
  name = "pytokens"
408
- version = "0.1.10"
409
- description = "A Fast, spec compliant Python 3.12+ tokenizer that runs on older Pythons."
408
+ version = "0.2.0"
409
+ description = "A Fast, spec compliant Python 3.13+ tokenizer that runs on older Pythons."
410
410
  optional = false
411
411
  python-versions = ">=3.8"
412
412
  groups = ["dev"]
413
413
  files = [
414
- {file = "pytokens-0.1.10-py3-none-any.whl", hash = "sha256:db7b72284e480e69fb085d9f251f66b3d2df8b7166059261258ff35f50fb711b"},
415
- {file = "pytokens-0.1.10.tar.gz", hash = "sha256:c9a4bfa0be1d26aebce03e6884ba454e842f186a59ea43a6d3b25af58223c044"},
414
+ {file = "pytokens-0.2.0-py3-none-any.whl", hash = "sha256:74d4b318c67f4295c13782ddd9abcb7e297ec5630ad060eb90abf7ebbefe59f8"},
415
+ {file = "pytokens-0.2.0.tar.gz", hash = "sha256:532d6421364e5869ea57a9523bf385f02586d4662acbcc0342afd69511b4dd43"},
416
416
  ]
417
417
 
418
418
  [package.extras]
@@ -433,4 +433,4 @@ files = [
433
433
  [metadata]
434
434
  lock-version = "2.1"
435
435
  python-versions = "^3.13"
436
- content-hash = "6aef8c5dbd6090736c98acabb4131675a7216549fdadf026eff2be76400a2861"
436
+ content-hash = "febe3a98e034fb67ac9786f059e1ee7f230979b1869d8156c2a43ed1d8c5b013"
@@ -3,7 +3,7 @@ module-name = "lindera"
3
3
 
4
4
  [project]
5
5
  name = "lindera-python"
6
- version = "1.2.0"
6
+ version = "1.3.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" }
@@ -24,13 +24,13 @@ requires-python = ">=3.8"
24
24
 
25
25
  [tool.poetry.dependencies]
26
26
  python = "^3.13"
27
- maturin = "^1.9.4"
27
+ maturin = "^1.9.6"
28
28
  patchelf = "^0.17.2.4"
29
29
 
30
30
  [tool.poetry.group.dev.dependencies]
31
31
  pytest = "^8.4.2"
32
32
  black = "^25.9.0"
33
- isort = "^6.1.0"
33
+ isort = "^7.0.0"
34
34
  autopep8 = "^2.3.2"
35
35
  flake8 = "^7.3.0"
36
36
  flake8-pyproject = "^1.2.3"