jpreprocess 0.1.1__tar.gz → 0.1.4__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 (137) hide show
  1. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/Cargo.lock +367 -308
  2. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/Cargo.toml +25 -25
  3. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/PKG-INFO +3 -3
  4. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/bindings/python/Cargo.toml +3 -7
  5. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/bindings/python/src/binding.rs +2 -0
  6. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/bindings/python/src/dictionary.rs +1 -0
  7. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/bindings/python/src/lib.rs +2 -1
  8. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/bindings/python/src/structs.rs +2 -2
  9. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess/Cargo.toml +2 -2
  10. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess/README.md +1 -1
  11. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess/src/bin/dict_tools/main.rs +12 -10
  12. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess/src/dictionary/mod.rs +7 -5
  13. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess/src/lib.rs +9 -5
  14. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/README.md +1 -1
  15. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/ctype/mod.rs +32 -22
  16. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/pos/meishi.rs +29 -18
  17. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/pos/mod.rs +39 -18
  18. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary/README.md +1 -1
  19. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary-builder/README.md +1 -1
  20. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary-builder/src/ipadic_builder.rs +0 -1
  21. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/README.md +1 -1
  22. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-njd/README.md +1 -1
  23. jpreprocess-0.1.4/crates/jpreprocess-njd/src/contrib/currency.rs +141 -0
  24. jpreprocess-0.1.4/crates/jpreprocess-njd/src/contrib/mod.rs +3 -0
  25. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-njd/src/lib.rs +15 -4
  26. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-njd/src/node.rs +0 -3
  27. jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/accent_phrase/mod.rs → jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk/accent_phrase.rs +23 -24
  28. jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/accent_type/mod.rs → jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk/accent_type.rs +22 -17
  29. {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk}/digit/mod.rs +13 -32
  30. {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/digit → jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk}/digit_sequence/builder.rs +27 -1
  31. {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/digit → jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk}/digit_sequence/mod.rs +68 -2
  32. {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/digit → jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk}/digit_sequence/score.rs +6 -1
  33. jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk/mod.rs +11 -0
  34. jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/pronunciation/mod.rs → jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk/pronunciation.rs +5 -7
  35. jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/unvoiced_vowel/mod.rs → jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk/unvoiced_vowel.rs +11 -10
  36. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-window/README.md +1 -1
  37. jpreprocess-0.1.1/crates/jpreprocess/tests/.gitignore +0 -3
  38. jpreprocess-0.1.1/crates/jpreprocess/tests/min-dict/char_def.bin +0 -0
  39. jpreprocess-0.1.1/crates/jpreprocess/tests/min-dict/dict.da +0 -0
  40. jpreprocess-0.1.1/crates/jpreprocess/tests/min-dict/dict.vals +0 -0
  41. jpreprocess-0.1.1/crates/jpreprocess/tests/min-dict/dict.words +0 -0
  42. jpreprocess-0.1.1/crates/jpreprocess/tests/min-dict/dict.wordsidx +0 -0
  43. jpreprocess-0.1.1/crates/jpreprocess/tests/min-dict/matrix.mtx +0 -0
  44. jpreprocess-0.1.1/crates/jpreprocess/tests/min-dict/unk.bin +0 -0
  45. jpreprocess-0.1.1/crates/jpreprocess/tests/open_jtalk.rs +0 -118
  46. jpreprocess-0.1.1/crates/jpreprocess/tests/user_dictionary.rs +0 -71
  47. jpreprocess-0.1.1/crates/jpreprocess-naist-jdic/Cargo.toml +0 -30
  48. jpreprocess-0.1.1/crates/jpreprocess-naist-jdic/NOTICE.txt +0 -152
  49. jpreprocess-0.1.1/crates/jpreprocess-naist-jdic/README.md +0 -36
  50. jpreprocess-0.1.1/crates/jpreprocess-naist-jdic/build.rs +0 -107
  51. jpreprocess-0.1.1/crates/jpreprocess-naist-jdic/src/lib.rs +0 -1
  52. jpreprocess-0.1.1/crates/jpreprocess-naist-jdic/src/lindera.rs +0 -78
  53. jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/digit/symbols.rs +0 -85
  54. jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/long_vowel/mod.rs +0 -5
  55. jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set/mod.rs +0 -17
  56. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/bindings/python/.gitignore +0 -0
  57. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/bindings/python/README.md +0 -0
  58. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/bindings/python/jpreprocess/__init__.py +0 -0
  59. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/bindings/python/jpreprocess/dictionary.py +0 -0
  60. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/bindings/python/jpreprocess/jpreprocess.pyi +0 -0
  61. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/bindings/python/jpreprocess/py.typed +0 -0
  62. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/bindings/python/pytests/test_simple.py +0 -0
  63. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess/src/bin/dict_tools/dict_query.rs +0 -0
  64. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess/src/bin/jpreprocess.rs +0 -0
  65. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess/src/dictionary/kind.rs +0 -0
  66. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess/src/normalize_text.rs +0 -0
  67. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/Cargo.toml +0 -0
  68. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/accent_rule.rs +0 -0
  69. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/cform.rs +0 -0
  70. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/ctype/five.rs +0 -0
  71. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/ctype/four.rs +0 -0
  72. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/ctype/ka_irregular.rs +0 -0
  73. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/ctype/keiyoushi.rs +0 -0
  74. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/ctype/lower_two.rs +0 -0
  75. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/ctype/old.rs +0 -0
  76. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/ctype/one.rs +0 -0
  77. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/ctype/sa_irregular.rs +0 -0
  78. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/ctype/special.rs +0 -0
  79. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/ctype/upper_two.rs +0 -0
  80. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/error.rs +0 -0
  81. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/lib.rs +0 -0
  82. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/pos/doushi.rs +0 -0
  83. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/pos/fukushi.rs +0 -0
  84. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/pos/joshi.rs +0 -0
  85. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/pos/keiyoushi.rs +0 -0
  86. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/pos/kigou.rs +0 -0
  87. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/pos/settoushi.rs +0 -0
  88. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/pronunciation/mod.rs +0 -0
  89. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/pronunciation/mora.rs +0 -0
  90. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/pronunciation/mora_dict.rs +0 -0
  91. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/pronunciation/mora_enum.rs +0 -0
  92. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/pronunciation/phoneme.rs +0 -0
  93. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/word_details.rs +0 -0
  94. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-core/src/word_entry.rs +0 -0
  95. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary/Cargo.toml +0 -0
  96. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary/src/default.rs +0 -0
  97. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary/src/lib.rs +0 -0
  98. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary/src/serializer/jpreprocess/current.rs +0 -0
  99. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary/src/serializer/jpreprocess/mod.rs +0 -0
  100. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary/src/serializer/lindera.rs +0 -0
  101. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary/src/serializer/mod.rs +0 -0
  102. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary/src/store.rs +0 -0
  103. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary-builder/Cargo.toml +0 -0
  104. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary-builder/NOTICE.txt +0 -0
  105. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary-builder/src/build_dict.rs +0 -0
  106. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary-builder/src/lib.rs +0 -0
  107. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary-builder/src/to_csv/da.rs +0 -0
  108. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-dictionary-builder/src/to_csv/mod.rs +0 -0
  109. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/Cargo.toml +0 -0
  110. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/src/feature/builder.rs +0 -0
  111. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/src/feature/limit.rs +0 -0
  112. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/src/feature/mod.rs +0 -0
  113. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/src/label/accent_phrase.rs +0 -0
  114. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/src/label/breath_group.rs +0 -0
  115. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/src/label/mod.rs +0 -0
  116. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/src/label/utterance.rs +0 -0
  117. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/src/label/word.rs +0 -0
  118. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/src/lib.rs +0 -0
  119. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/src/word_attr/cform.rs +0 -0
  120. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/src/word_attr/ctype.rs +0 -0
  121. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/src/word_attr/mod.rs +0 -0
  122. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-jpcommon/src/word_attr/pos.rs +0 -0
  123. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-njd/Cargo.toml +0 -0
  124. {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk}/digit/lut/class1.rs +0 -0
  125. {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk}/digit/lut/class2.rs +0 -0
  126. {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk}/digit/lut/class3.rs +0 -0
  127. {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk}/digit/lut/mod.rs +0 -0
  128. {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk}/digit/lut/numeral.rs +0 -0
  129. {jpreprocess-0.1.1/crates/jpreprocess-njd/src/njd_set → jpreprocess-0.1.4/crates/jpreprocess-njd/src/open_jtalk}/digit/lut/others.rs +0 -0
  130. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-window/Cargo.toml +0 -0
  131. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-window/src/lib.rs +0 -0
  132. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/crates/jpreprocess-window/src/structures.rs +0 -0
  133. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/jpreprocess/__init__.py +0 -0
  134. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/jpreprocess/dictionary.py +0 -0
  135. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/jpreprocess/jpreprocess.pyi +0 -0
  136. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/jpreprocess/py.typed +0 -0
  137. {jpreprocess-0.1.1 → jpreprocess-0.1.4}/pyproject.toml +0 -0
@@ -10,9 +10,9 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
10
10
 
11
11
  [[package]]
12
12
  name = "ahash"
13
- version = "0.8.7"
13
+ version = "0.8.11"
14
14
  source = "registry+https://github.com/rust-lang/crates.io-index"
15
- checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
15
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
16
16
  dependencies = [
17
17
  "cfg-if",
18
18
  "once_cell",
@@ -22,9 +22,9 @@ dependencies = [
22
22
 
23
23
  [[package]]
24
24
  name = "aho-corasick"
25
- version = "1.1.2"
25
+ version = "1.1.3"
26
26
  source = "registry+https://github.com/rust-lang/crates.io-index"
27
- checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
27
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
28
28
  dependencies = [
29
29
  "memchr",
30
30
  ]
@@ -37,9 +37,9 @@ checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
37
37
 
38
38
  [[package]]
39
39
  name = "anstream"
40
- version = "0.6.11"
40
+ version = "0.6.13"
41
41
  source = "registry+https://github.com/rust-lang/crates.io-index"
42
- checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5"
42
+ checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb"
43
43
  dependencies = [
44
44
  "anstyle",
45
45
  "anstyle-parse",
@@ -51,33 +51,33 @@ dependencies = [
51
51
 
52
52
  [[package]]
53
53
  name = "anstyle"
54
- version = "1.0.6"
54
+ version = "1.0.8"
55
55
  source = "registry+https://github.com/rust-lang/crates.io-index"
56
- checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
56
+ checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
57
57
 
58
58
  [[package]]
59
59
  name = "anstyle-parse"
60
- version = "0.2.2"
60
+ version = "0.2.3"
61
61
  source = "registry+https://github.com/rust-lang/crates.io-index"
62
- checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140"
62
+ checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
63
63
  dependencies = [
64
64
  "utf8parse",
65
65
  ]
66
66
 
67
67
  [[package]]
68
68
  name = "anstyle-query"
69
- version = "1.0.0"
69
+ version = "1.0.2"
70
70
  source = "registry+https://github.com/rust-lang/crates.io-index"
71
- checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
71
+ checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
72
72
  dependencies = [
73
73
  "windows-sys",
74
74
  ]
75
75
 
76
76
  [[package]]
77
77
  name = "anstyle-wincon"
78
- version = "3.0.1"
78
+ version = "3.0.2"
79
79
  source = "registry+https://github.com/rust-lang/crates.io-index"
80
- checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628"
80
+ checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
81
81
  dependencies = [
82
82
  "anstyle",
83
83
  "windows-sys",
@@ -85,9 +85,9 @@ dependencies = [
85
85
 
86
86
  [[package]]
87
87
  name = "anyhow"
88
- version = "1.0.80"
88
+ version = "1.0.86"
89
89
  source = "registry+https://github.com/rust-lang/crates.io-index"
90
- checksum = "5ad32ce52e4161730f7098c077cd2ed6229b5804ccf99e5366be1ab72a98b4e1"
90
+ checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
91
91
 
92
92
  [[package]]
93
93
  name = "autocfg"
@@ -97,9 +97,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
97
97
 
98
98
  [[package]]
99
99
  name = "base64"
100
- version = "0.21.5"
100
+ version = "0.22.0"
101
101
  source = "registry+https://github.com/rust-lang/crates.io-index"
102
- checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
102
+ checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51"
103
103
 
104
104
  [[package]]
105
105
  name = "bincode"
@@ -116,11 +116,17 @@ version = "1.3.2"
116
116
  source = "registry+https://github.com/rust-lang/crates.io-index"
117
117
  checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
118
118
 
119
+ [[package]]
120
+ name = "bitflags"
121
+ version = "2.5.0"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
124
+
119
125
  [[package]]
120
126
  name = "bumpalo"
121
- version = "3.14.0"
127
+ version = "3.15.4"
122
128
  source = "registry+https://github.com/rust-lang/crates.io-index"
123
- checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
129
+ checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa"
124
130
 
125
131
  [[package]]
126
132
  name = "byteorder"
@@ -130,12 +136,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
130
136
 
131
137
  [[package]]
132
138
  name = "cc"
133
- version = "1.0.83"
139
+ version = "1.0.90"
134
140
  source = "registry+https://github.com/rust-lang/crates.io-index"
135
- checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
136
- dependencies = [
137
- "libc",
138
- ]
141
+ checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5"
139
142
 
140
143
  [[package]]
141
144
  name = "cfg-if"
@@ -145,9 +148,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
145
148
 
146
149
  [[package]]
147
150
  name = "clap"
148
- version = "4.5.1"
151
+ version = "4.5.15"
149
152
  source = "registry+https://github.com/rust-lang/crates.io-index"
150
- checksum = "c918d541ef2913577a0f9566e9ce27cb35b6df072075769e0b26cb5a554520da"
153
+ checksum = "11d8838454fda655dafd3accb2b6e2bea645b9e4078abe84a22ceb947235c5cc"
151
154
  dependencies = [
152
155
  "clap_builder",
153
156
  "clap_derive",
@@ -155,23 +158,23 @@ dependencies = [
155
158
 
156
159
  [[package]]
157
160
  name = "clap_builder"
158
- version = "4.5.1"
161
+ version = "4.5.15"
159
162
  source = "registry+https://github.com/rust-lang/crates.io-index"
160
- checksum = "9f3e7391dad68afb0c2ede1bf619f579a3dc9c2ec67f089baa397123a2f3d1eb"
163
+ checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6"
161
164
  dependencies = [
162
165
  "anstream",
163
166
  "anstyle",
164
167
  "clap_lex",
165
- "strsim",
168
+ "strsim 0.11.0",
166
169
  ]
167
170
 
168
171
  [[package]]
169
172
  name = "clap_derive"
170
- version = "4.5.0"
173
+ version = "4.5.13"
171
174
  source = "registry+https://github.com/rust-lang/crates.io-index"
172
- checksum = "307bc0538d5f0f83b8248db3087aa92fe504e4691294d0c96c0eabc33f47ba47"
175
+ checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0"
173
176
  dependencies = [
174
- "heck",
177
+ "heck 0.5.0",
175
178
  "proc-macro2",
176
179
  "quote",
177
180
  "syn",
@@ -191,45 +194,37 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
191
194
 
192
195
  [[package]]
193
196
  name = "crc32fast"
194
- version = "1.3.2"
197
+ version = "1.4.0"
195
198
  source = "registry+https://github.com/rust-lang/crates.io-index"
196
- checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
199
+ checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
197
200
  dependencies = [
198
201
  "cfg-if",
199
202
  ]
200
203
 
201
204
  [[package]]
202
205
  name = "crossbeam-deque"
203
- version = "0.8.3"
206
+ version = "0.8.5"
204
207
  source = "registry+https://github.com/rust-lang/crates.io-index"
205
- checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
208
+ checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
206
209
  dependencies = [
207
- "cfg-if",
208
210
  "crossbeam-epoch",
209
211
  "crossbeam-utils",
210
212
  ]
211
213
 
212
214
  [[package]]
213
215
  name = "crossbeam-epoch"
214
- version = "0.9.15"
216
+ version = "0.9.18"
215
217
  source = "registry+https://github.com/rust-lang/crates.io-index"
216
- checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
218
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
217
219
  dependencies = [
218
- "autocfg",
219
- "cfg-if",
220
220
  "crossbeam-utils",
221
- "memoffset",
222
- "scopeguard",
223
221
  ]
224
222
 
225
223
  [[package]]
226
224
  name = "crossbeam-utils"
227
- version = "0.8.16"
225
+ version = "0.8.19"
228
226
  source = "registry+https://github.com/rust-lang/crates.io-index"
229
- checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
230
- dependencies = [
231
- "cfg-if",
232
- ]
227
+ checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
233
228
 
234
229
  [[package]]
235
230
  name = "csv"
@@ -252,11 +247,77 @@ dependencies = [
252
247
  "memchr",
253
248
  ]
254
249
 
250
+ [[package]]
251
+ name = "darling"
252
+ version = "0.20.8"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
255
+ dependencies = [
256
+ "darling_core",
257
+ "darling_macro",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "darling_core"
262
+ version = "0.20.8"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
265
+ dependencies = [
266
+ "fnv",
267
+ "ident_case",
268
+ "proc-macro2",
269
+ "quote",
270
+ "strsim 0.10.0",
271
+ "syn",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "darling_macro"
276
+ version = "0.20.8"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
279
+ dependencies = [
280
+ "darling_core",
281
+ "quote",
282
+ "syn",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "derive_builder"
287
+ version = "0.20.0"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7"
290
+ dependencies = [
291
+ "derive_builder_macro",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "derive_builder_core"
296
+ version = "0.20.0"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d"
299
+ dependencies = [
300
+ "darling",
301
+ "proc-macro2",
302
+ "quote",
303
+ "syn",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "derive_builder_macro"
308
+ version = "0.20.0"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b"
311
+ dependencies = [
312
+ "derive_builder_core",
313
+ "syn",
314
+ ]
315
+
255
316
  [[package]]
256
317
  name = "either"
257
- version = "1.9.0"
318
+ version = "1.10.0"
258
319
  source = "registry+https://github.com/rust-lang/crates.io-index"
259
- checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
320
+ checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
260
321
 
261
322
  [[package]]
262
323
  name = "encoding"
@@ -341,31 +402,18 @@ dependencies = [
341
402
  ]
342
403
 
343
404
  [[package]]
344
- name = "env_filter"
345
- version = "0.1.0"
346
- source = "registry+https://github.com/rust-lang/crates.io-index"
347
- checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea"
348
- dependencies = [
349
- "log",
350
- "regex",
351
- ]
352
-
353
- [[package]]
354
- name = "env_logger"
355
- version = "0.11.2"
405
+ name = "errno"
406
+ version = "0.3.8"
356
407
  source = "registry+https://github.com/rust-lang/crates.io-index"
357
- checksum = "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d"
408
+ checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
358
409
  dependencies = [
359
- "anstream",
360
- "anstyle",
361
- "env_filter",
362
- "humantime",
363
- "log",
410
+ "libc",
411
+ "windows-sys",
364
412
  ]
365
413
 
366
414
  [[package]]
367
415
  name = "example-lru"
368
- version = "0.8.0"
416
+ version = "0.10.0"
369
417
  dependencies = [
370
418
  "jpreprocess",
371
419
  "jpreprocess-core",
@@ -376,14 +424,14 @@ dependencies = [
376
424
 
377
425
  [[package]]
378
426
  name = "example-simple"
379
- version = "0.8.0"
427
+ version = "0.10.0"
380
428
  dependencies = [
381
429
  "jpreprocess",
382
430
  ]
383
431
 
384
432
  [[package]]
385
433
  name = "example-wasm"
386
- version = "0.8.0"
434
+ version = "0.10.0"
387
435
  dependencies = [
388
436
  "jpreprocess",
389
437
  "js-sys",
@@ -395,40 +443,46 @@ dependencies = [
395
443
 
396
444
  [[package]]
397
445
  name = "filetime"
398
- version = "0.2.22"
446
+ version = "0.2.23"
399
447
  source = "registry+https://github.com/rust-lang/crates.io-index"
400
- checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0"
448
+ checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
401
449
  dependencies = [
402
450
  "cfg-if",
403
451
  "libc",
404
- "redox_syscall 0.3.5",
452
+ "redox_syscall",
405
453
  "windows-sys",
406
454
  ]
407
455
 
408
456
  [[package]]
409
457
  name = "flate2"
410
- version = "1.0.28"
458
+ version = "1.0.31"
411
459
  source = "registry+https://github.com/rust-lang/crates.io-index"
412
- checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
460
+ checksum = "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920"
413
461
  dependencies = [
414
462
  "crc32fast",
415
463
  "miniz_oxide",
416
464
  ]
417
465
 
466
+ [[package]]
467
+ name = "fnv"
468
+ version = "1.0.7"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
471
+
418
472
  [[package]]
419
473
  name = "form_urlencoded"
420
- version = "1.2.0"
474
+ version = "1.2.1"
421
475
  source = "registry+https://github.com/rust-lang/crates.io-index"
422
- checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
476
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
423
477
  dependencies = [
424
478
  "percent-encoding",
425
479
  ]
426
480
 
427
481
  [[package]]
428
482
  name = "getrandom"
429
- version = "0.2.10"
483
+ version = "0.2.12"
430
484
  source = "registry+https://github.com/rust-lang/crates.io-index"
431
- checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
485
+ checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
432
486
  dependencies = [
433
487
  "cfg-if",
434
488
  "libc",
@@ -458,16 +512,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
458
512
  checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
459
513
 
460
514
  [[package]]
461
- name = "humantime"
462
- version = "2.1.0"
515
+ name = "heck"
516
+ version = "0.5.0"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
519
+
520
+ [[package]]
521
+ name = "ident_case"
522
+ version = "1.0.1"
463
523
  source = "registry+https://github.com/rust-lang/crates.io-index"
464
- checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
524
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
465
525
 
466
526
  [[package]]
467
527
  name = "idna"
468
- version = "0.3.0"
528
+ version = "0.5.0"
469
529
  source = "registry+https://github.com/rust-lang/crates.io-index"
470
- checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
530
+ checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
471
531
  dependencies = [
472
532
  "unicode-bidi",
473
533
  "unicode-normalization",
@@ -475,28 +535,28 @@ dependencies = [
475
535
 
476
536
  [[package]]
477
537
  name = "indoc"
478
- version = "2.0.4"
538
+ version = "2.0.5"
479
539
  source = "registry+https://github.com/rust-lang/crates.io-index"
480
- checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
540
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
481
541
 
482
542
  [[package]]
483
543
  name = "itoa"
484
- version = "1.0.9"
544
+ version = "1.0.10"
485
545
  source = "registry+https://github.com/rust-lang/crates.io-index"
486
- checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
546
+ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
487
547
 
488
548
  [[package]]
489
549
  name = "jlabel"
490
- version = "0.1.2"
550
+ version = "0.1.4"
491
551
  source = "registry+https://github.com/rust-lang/crates.io-index"
492
- checksum = "1f040b22c55628977296069dbf8635be49cc510999c048a1f1bdb56d00983148"
552
+ checksum = "145ee6f495871a0cde6d49ddfa0d103d07430c449d95b6d92fbfb032d622f0b7"
493
553
  dependencies = [
494
554
  "thiserror",
495
555
  ]
496
556
 
497
557
  [[package]]
498
558
  name = "jpreprocess"
499
- version = "0.8.0"
559
+ version = "0.10.0"
500
560
  dependencies = [
501
561
  "clap",
502
562
  "jlabel",
@@ -514,7 +574,7 @@ dependencies = [
514
574
 
515
575
  [[package]]
516
576
  name = "jpreprocess-core"
517
- version = "0.8.0"
577
+ version = "0.10.0"
518
578
  dependencies = [
519
579
  "aho-corasick",
520
580
  "bincode",
@@ -528,7 +588,7 @@ dependencies = [
528
588
 
529
589
  [[package]]
530
590
  name = "jpreprocess-dictionary"
531
- version = "0.8.0"
591
+ version = "0.10.0"
532
592
  dependencies = [
533
593
  "anyhow",
534
594
  "bincode",
@@ -543,7 +603,7 @@ dependencies = [
543
603
 
544
604
  [[package]]
545
605
  name = "jpreprocess-dictionary-builder"
546
- version = "0.8.0"
606
+ version = "0.10.0"
547
607
  dependencies = [
548
608
  "anyhow",
549
609
  "bincode",
@@ -561,7 +621,7 @@ dependencies = [
561
621
 
562
622
  [[package]]
563
623
  name = "jpreprocess-jpcommon"
564
- version = "0.8.0"
624
+ version = "0.10.0"
565
625
  dependencies = [
566
626
  "jlabel",
567
627
  "jpreprocess-core",
@@ -570,7 +630,7 @@ dependencies = [
570
630
 
571
631
  [[package]]
572
632
  name = "jpreprocess-naist-jdic"
573
- version = "0.8.0"
633
+ version = "0.10.0"
574
634
  dependencies = [
575
635
  "encoding",
576
636
  "flate2",
@@ -583,7 +643,7 @@ dependencies = [
583
643
 
584
644
  [[package]]
585
645
  name = "jpreprocess-njd"
586
- version = "0.8.0"
646
+ version = "0.10.0"
587
647
  dependencies = [
588
648
  "aho-corasick",
589
649
  "jpreprocess-core",
@@ -595,7 +655,7 @@ dependencies = [
595
655
 
596
656
  [[package]]
597
657
  name = "jpreprocess-python"
598
- version = "0.1.1"
658
+ version = "0.1.4"
599
659
  dependencies = [
600
660
  "jpreprocess",
601
661
  "jpreprocess-core",
@@ -611,47 +671,40 @@ dependencies = [
611
671
 
612
672
  [[package]]
613
673
  name = "jpreprocess-window"
614
- version = "0.8.0"
674
+ version = "0.10.0"
615
675
 
616
676
  [[package]]
617
677
  name = "js-sys"
618
- version = "0.3.65"
678
+ version = "0.3.69"
619
679
  source = "registry+https://github.com/rust-lang/crates.io-index"
620
- checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8"
680
+ checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
621
681
  dependencies = [
622
682
  "wasm-bindgen",
623
683
  ]
624
684
 
625
685
  [[package]]
626
686
  name = "libc"
627
- version = "0.2.149"
687
+ version = "0.2.153"
628
688
  source = "registry+https://github.com/rust-lang/crates.io-index"
629
- checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b"
689
+ checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
630
690
 
631
691
  [[package]]
632
692
  name = "lindera-cc-cedict-builder"
633
- version = "0.28.0"
693
+ version = "0.32.2"
634
694
  source = "registry+https://github.com/rust-lang/crates.io-index"
635
- checksum = "ca21f2ee3ca40e7f3ebbd568d041be1531c2c28dbf540e737aeba934ab53f330"
695
+ checksum = "85b8f642bc9c9130682569975772a17336c6aab26d11fc0f823f3e663167ace6"
636
696
  dependencies = [
637
697
  "anyhow",
638
- "bincode",
639
- "byteorder",
640
- "csv",
641
- "encoding",
642
- "env_logger",
643
- "glob",
644
698
  "lindera-core",
645
699
  "lindera-decompress",
646
- "log",
647
- "yada",
700
+ "lindera-dictionary-builder",
648
701
  ]
649
702
 
650
703
  [[package]]
651
704
  name = "lindera-core"
652
- version = "0.28.0"
705
+ version = "0.32.2"
653
706
  source = "registry+https://github.com/rust-lang/crates.io-index"
654
- checksum = "09d4b717a8a31b73a3cbd3552e0abda14e0c85d97dc8b911035342533defdbad"
707
+ checksum = "0c28191456debc98af6aa5f7db77872471983e9fa2a737b1c232b6ef543aed62"
655
708
  dependencies = [
656
709
  "anyhow",
657
710
  "bincode",
@@ -666,9 +719,9 @@ dependencies = [
666
719
 
667
720
  [[package]]
668
721
  name = "lindera-decompress"
669
- version = "0.28.0"
722
+ version = "0.32.2"
670
723
  source = "registry+https://github.com/rust-lang/crates.io-index"
671
- checksum = "98f4476c99cb4ffa54fbfc42953adf69ada7276cfbb594bce9829547de012058"
724
+ checksum = "4788a1ead2f63f3fc2888109272921dedd86a87b7d0bf05e9daab46600daac51"
672
725
  dependencies = [
673
726
  "anyhow",
674
727
  "flate2",
@@ -677,9 +730,9 @@ dependencies = [
677
730
 
678
731
  [[package]]
679
732
  name = "lindera-dictionary"
680
- version = "0.28.0"
733
+ version = "0.32.2"
681
734
  source = "registry+https://github.com/rust-lang/crates.io-index"
682
- checksum = "a45b92f0ce331c2202c6cec3135e4bfce29525ab3bb97a613c27c8e0a29fa967"
735
+ checksum = "bdf5f91725e32b9a21b1656baa7030766c9bafc4de4b4ddeb8ffdde7224dd2f6"
683
736
  dependencies = [
684
737
  "anyhow",
685
738
  "bincode",
@@ -691,74 +744,72 @@ dependencies = [
691
744
  "lindera-ko-dic-builder",
692
745
  "lindera-unidic-builder",
693
746
  "serde",
747
+ "strum",
748
+ "strum_macros",
694
749
  ]
695
750
 
696
751
  [[package]]
697
- name = "lindera-ipadic-builder"
698
- version = "0.28.0"
752
+ name = "lindera-dictionary-builder"
753
+ version = "0.32.2"
699
754
  source = "registry+https://github.com/rust-lang/crates.io-index"
700
- checksum = "642dee52201852df209cb43423ff1ca4d161a329f5cdba049a7b5820118345f2"
755
+ checksum = "e41f00ba7ac541b0ffd8c30e7a73f2dd197546cc5780462ec4f2e4782945a780"
701
756
  dependencies = [
702
757
  "anyhow",
703
758
  "bincode",
704
759
  "byteorder",
705
760
  "csv",
761
+ "derive_builder",
762
+ "encoding",
706
763
  "encoding_rs",
707
764
  "encoding_rs_io",
708
- "env_logger",
709
765
  "glob",
710
766
  "lindera-core",
711
767
  "lindera-decompress",
712
768
  "log",
713
- "serde",
714
769
  "yada",
715
770
  ]
716
771
 
772
+ [[package]]
773
+ name = "lindera-ipadic-builder"
774
+ version = "0.32.2"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "bf5031c52686128db13f774b2c5a8abfd52b4cc1f904041d8411aa19d630ce4d"
777
+ dependencies = [
778
+ "anyhow",
779
+ "lindera-core",
780
+ "lindera-decompress",
781
+ "lindera-dictionary-builder",
782
+ ]
783
+
717
784
  [[package]]
718
785
  name = "lindera-ipadic-neologd-builder"
719
- version = "0.28.0"
786
+ version = "0.32.2"
720
787
  source = "registry+https://github.com/rust-lang/crates.io-index"
721
- checksum = "325144b154e68159373e944d1cd7f67c6ff9965a2af41240a8e41732b3fdb3af"
788
+ checksum = "abf36e40ace904741efdd883ed5c4dba6425f65156a0fb5d3f73a386335950dc"
722
789
  dependencies = [
723
790
  "anyhow",
724
- "bincode",
725
- "byteorder",
726
- "csv",
727
- "encoding_rs",
728
- "encoding_rs_io",
729
- "env_logger",
730
- "glob",
731
791
  "lindera-core",
732
792
  "lindera-decompress",
733
- "log",
734
- "serde",
735
- "yada",
793
+ "lindera-dictionary-builder",
736
794
  ]
737
795
 
738
796
  [[package]]
739
797
  name = "lindera-ko-dic-builder"
740
- version = "0.28.0"
798
+ version = "0.32.2"
741
799
  source = "registry+https://github.com/rust-lang/crates.io-index"
742
- checksum = "b9413d4d9bf7af921f5ac64414a290c7ba81695e8ba08dd2f6c950b57c281a69"
800
+ checksum = "9f2c60425abc1548570c2568858f74a1f042105ecd89faa39c651b4315350fd9"
743
801
  dependencies = [
744
802
  "anyhow",
745
- "bincode",
746
- "byteorder",
747
- "csv",
748
- "encoding",
749
- "env_logger",
750
- "glob",
751
803
  "lindera-core",
752
804
  "lindera-decompress",
753
- "log",
754
- "yada",
805
+ "lindera-dictionary-builder",
755
806
  ]
756
807
 
757
808
  [[package]]
758
809
  name = "lindera-tokenizer"
759
- version = "0.28.0"
810
+ version = "0.32.2"
760
811
  source = "registry+https://github.com/rust-lang/crates.io-index"
761
- checksum = "9987c818462d51ca67e131e40f0386e25e8c557e195059b1257f95731561185d"
812
+ checksum = "903e558981bcb6f59870aa7d6b4bcb09e8f7db778886a6a70f67fd74c9fa2ca3"
762
813
  dependencies = [
763
814
  "bincode",
764
815
  "lindera-core",
@@ -770,53 +821,42 @@ dependencies = [
770
821
 
771
822
  [[package]]
772
823
  name = "lindera-unidic-builder"
773
- version = "0.28.0"
824
+ version = "0.32.2"
774
825
  source = "registry+https://github.com/rust-lang/crates.io-index"
775
- checksum = "601ec33b5174141396a7a4ca066278863840221fec32d0be19091e7fae91ed94"
826
+ checksum = "99e2c50015c242e02c451acb6748667ac6fd1d3d667cd7db48cd89e2f2d2377e"
776
827
  dependencies = [
777
828
  "anyhow",
778
- "bincode",
779
- "byteorder",
780
- "csv",
781
- "encoding",
782
- "env_logger",
783
- "glob",
784
829
  "lindera-core",
785
830
  "lindera-decompress",
786
- "log",
787
- "yada",
831
+ "lindera-dictionary-builder",
788
832
  ]
789
833
 
790
834
  [[package]]
791
- name = "lock_api"
792
- version = "0.4.11"
835
+ name = "linux-raw-sys"
836
+ version = "0.4.13"
793
837
  source = "registry+https://github.com/rust-lang/crates.io-index"
794
- checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
795
- dependencies = [
796
- "autocfg",
797
- "scopeguard",
798
- ]
838
+ checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
799
839
 
800
840
  [[package]]
801
841
  name = "log"
802
- version = "0.4.20"
842
+ version = "0.4.22"
803
843
  source = "registry+https://github.com/rust-lang/crates.io-index"
804
- checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
844
+ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
805
845
 
806
846
  [[package]]
807
847
  name = "lru"
808
- version = "0.12.2"
848
+ version = "0.12.3"
809
849
  source = "registry+https://github.com/rust-lang/crates.io-index"
810
- checksum = "db2c024b41519440580066ba82aab04092b333e09066a5eb86c7c4890df31f22"
850
+ checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc"
811
851
  dependencies = [
812
852
  "hashbrown",
813
853
  ]
814
854
 
815
855
  [[package]]
816
856
  name = "memchr"
817
- version = "2.6.4"
857
+ version = "2.7.1"
818
858
  source = "registry+https://github.com/rust-lang/crates.io-index"
819
- checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
859
+ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
820
860
 
821
861
  [[package]]
822
862
  name = "memoffset"
@@ -829,9 +869,9 @@ dependencies = [
829
869
 
830
870
  [[package]]
831
871
  name = "miniz_oxide"
832
- version = "0.7.1"
872
+ version = "0.7.2"
833
873
  source = "registry+https://github.com/rust-lang/crates.io-index"
834
- checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
874
+ checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
835
875
  dependencies = [
836
876
  "adler",
837
877
  ]
@@ -842,34 +882,11 @@ version = "1.19.0"
842
882
  source = "registry+https://github.com/rust-lang/crates.io-index"
843
883
  checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
844
884
 
845
- [[package]]
846
- name = "parking_lot"
847
- version = "0.12.1"
848
- source = "registry+https://github.com/rust-lang/crates.io-index"
849
- checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
850
- dependencies = [
851
- "lock_api",
852
- "parking_lot_core",
853
- ]
854
-
855
- [[package]]
856
- name = "parking_lot_core"
857
- version = "0.9.9"
858
- source = "registry+https://github.com/rust-lang/crates.io-index"
859
- checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
860
- dependencies = [
861
- "cfg-if",
862
- "libc",
863
- "redox_syscall 0.4.1",
864
- "smallvec",
865
- "windows-targets",
866
- ]
867
-
868
885
  [[package]]
869
886
  name = "percent-encoding"
870
- version = "2.3.0"
887
+ version = "2.3.1"
871
888
  source = "registry+https://github.com/rust-lang/crates.io-index"
872
- checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
889
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
873
890
 
874
891
  [[package]]
875
892
  name = "phf"
@@ -921,24 +938,24 @@ checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
921
938
 
922
939
  [[package]]
923
940
  name = "proc-macro2"
924
- version = "1.0.76"
941
+ version = "1.0.86"
925
942
  source = "registry+https://github.com/rust-lang/crates.io-index"
926
- checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c"
943
+ checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
927
944
  dependencies = [
928
945
  "unicode-ident",
929
946
  ]
930
947
 
931
948
  [[package]]
932
949
  name = "pyo3"
933
- version = "0.20.3"
950
+ version = "0.22.2"
934
951
  source = "registry+https://github.com/rust-lang/crates.io-index"
935
- checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
952
+ checksum = "831e8e819a138c36e212f3af3fd9eeffed6bf1510a805af35b0edee5ffa59433"
936
953
  dependencies = [
937
954
  "cfg-if",
938
955
  "indoc",
939
956
  "libc",
940
957
  "memoffset",
941
- "parking_lot",
958
+ "once_cell",
942
959
  "portable-atomic",
943
960
  "pyo3-build-config",
944
961
  "pyo3-ffi",
@@ -948,9 +965,9 @@ dependencies = [
948
965
 
949
966
  [[package]]
950
967
  name = "pyo3-build-config"
951
- version = "0.20.3"
968
+ version = "0.22.2"
952
969
  source = "registry+https://github.com/rust-lang/crates.io-index"
953
- checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
970
+ checksum = "1e8730e591b14492a8945cdff32f089250b05f5accecf74aeddf9e8272ce1fa8"
954
971
  dependencies = [
955
972
  "once_cell",
956
973
  "target-lexicon",
@@ -958,9 +975,9 @@ dependencies = [
958
975
 
959
976
  [[package]]
960
977
  name = "pyo3-ffi"
961
- version = "0.20.3"
978
+ version = "0.22.2"
962
979
  source = "registry+https://github.com/rust-lang/crates.io-index"
963
- checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
980
+ checksum = "5e97e919d2df92eb88ca80a037969f44e5e70356559654962cbb3316d00300c6"
964
981
  dependencies = [
965
982
  "libc",
966
983
  "pyo3-build-config",
@@ -968,9 +985,9 @@ dependencies = [
968
985
 
969
986
  [[package]]
970
987
  name = "pyo3-macros"
971
- version = "0.20.3"
988
+ version = "0.22.2"
972
989
  source = "registry+https://github.com/rust-lang/crates.io-index"
973
- checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
990
+ checksum = "eb57983022ad41f9e683a599f2fd13c3664d7063a3ac5714cae4b7bee7d3f206"
974
991
  dependencies = [
975
992
  "proc-macro2",
976
993
  "pyo3-macros-backend",
@@ -980,11 +997,11 @@ dependencies = [
980
997
 
981
998
  [[package]]
982
999
  name = "pyo3-macros-backend"
983
- version = "0.20.3"
1000
+ version = "0.22.2"
984
1001
  source = "registry+https://github.com/rust-lang/crates.io-index"
985
- checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
1002
+ checksum = "ec480c0c51ddec81019531705acac51bcdbeae563557c982aa8263bb96880372"
986
1003
  dependencies = [
987
- "heck",
1004
+ "heck 0.5.0",
988
1005
  "proc-macro2",
989
1006
  "pyo3-build-config",
990
1007
  "quote",
@@ -993,9 +1010,9 @@ dependencies = [
993
1010
 
994
1011
  [[package]]
995
1012
  name = "pythonize"
996
- version = "0.20.0"
1013
+ version = "0.22.0"
997
1014
  source = "registry+https://github.com/rust-lang/crates.io-index"
998
- checksum = "ffd1c3ef39c725d63db5f9bc455461bafd80540cb7824c61afb823501921a850"
1015
+ checksum = "90fcf491425978bd889015d5430f6473d91bdfa2097262f1e731aadcf6c2113e"
999
1016
  dependencies = [
1000
1017
  "pyo3",
1001
1018
  "serde",
@@ -1027,9 +1044,9 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1027
1044
 
1028
1045
  [[package]]
1029
1046
  name = "rayon"
1030
- version = "1.8.0"
1047
+ version = "1.10.0"
1031
1048
  source = "registry+https://github.com/rust-lang/crates.io-index"
1032
- checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
1049
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
1033
1050
  dependencies = [
1034
1051
  "either",
1035
1052
  "rayon-core",
@@ -1037,37 +1054,28 @@ dependencies = [
1037
1054
 
1038
1055
  [[package]]
1039
1056
  name = "rayon-core"
1040
- version = "1.12.0"
1057
+ version = "1.12.1"
1041
1058
  source = "registry+https://github.com/rust-lang/crates.io-index"
1042
- checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
1059
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
1043
1060
  dependencies = [
1044
1061
  "crossbeam-deque",
1045
1062
  "crossbeam-utils",
1046
1063
  ]
1047
1064
 
1048
- [[package]]
1049
- name = "redox_syscall"
1050
- version = "0.3.5"
1051
- source = "registry+https://github.com/rust-lang/crates.io-index"
1052
- checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
1053
- dependencies = [
1054
- "bitflags",
1055
- ]
1056
-
1057
1065
  [[package]]
1058
1066
  name = "redox_syscall"
1059
1067
  version = "0.4.1"
1060
1068
  source = "registry+https://github.com/rust-lang/crates.io-index"
1061
1069
  checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
1062
1070
  dependencies = [
1063
- "bitflags",
1071
+ "bitflags 1.3.2",
1064
1072
  ]
1065
1073
 
1066
1074
  [[package]]
1067
1075
  name = "regex"
1068
- version = "1.10.3"
1076
+ version = "1.10.6"
1069
1077
  source = "registry+https://github.com/rust-lang/crates.io-index"
1070
- checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
1078
+ checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
1071
1079
  dependencies = [
1072
1080
  "aho-corasick",
1073
1081
  "memchr",
@@ -1077,9 +1085,9 @@ dependencies = [
1077
1085
 
1078
1086
  [[package]]
1079
1087
  name = "regex-automata"
1080
- version = "0.4.5"
1088
+ version = "0.4.6"
1081
1089
  source = "registry+https://github.com/rust-lang/crates.io-index"
1082
- checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd"
1090
+ checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
1083
1091
  dependencies = [
1084
1092
  "aho-corasick",
1085
1093
  "memchr",
@@ -1094,11 +1102,12 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
1094
1102
 
1095
1103
  [[package]]
1096
1104
  name = "ring"
1097
- version = "0.17.5"
1105
+ version = "0.17.8"
1098
1106
  source = "registry+https://github.com/rust-lang/crates.io-index"
1099
- checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b"
1107
+ checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
1100
1108
  dependencies = [
1101
1109
  "cc",
1110
+ "cfg-if",
1102
1111
  "getrandom",
1103
1112
  "libc",
1104
1113
  "spin",
@@ -1106,13 +1115,27 @@ dependencies = [
1106
1115
  "windows-sys",
1107
1116
  ]
1108
1117
 
1118
+ [[package]]
1119
+ name = "rustix"
1120
+ version = "0.38.32"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89"
1123
+ dependencies = [
1124
+ "bitflags 2.5.0",
1125
+ "errno",
1126
+ "libc",
1127
+ "linux-raw-sys",
1128
+ "windows-sys",
1129
+ ]
1130
+
1109
1131
  [[package]]
1110
1132
  name = "rustls"
1111
- version = "0.22.2"
1133
+ version = "0.23.10"
1112
1134
  source = "registry+https://github.com/rust-lang/crates.io-index"
1113
- checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41"
1135
+ checksum = "05cff451f60db80f490f3c182b77c35260baace73209e9cdbbe526bfe3a4d402"
1114
1136
  dependencies = [
1115
1137
  "log",
1138
+ "once_cell",
1116
1139
  "ring",
1117
1140
  "rustls-pki-types",
1118
1141
  "rustls-webpki",
@@ -1122,15 +1145,15 @@ dependencies = [
1122
1145
 
1123
1146
  [[package]]
1124
1147
  name = "rustls-pki-types"
1125
- version = "1.2.0"
1148
+ version = "1.7.0"
1126
1149
  source = "registry+https://github.com/rust-lang/crates.io-index"
1127
- checksum = "0a716eb65e3158e90e17cd93d855216e27bde02745ab842f2cab4a39dba1bacf"
1150
+ checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
1128
1151
 
1129
1152
  [[package]]
1130
1153
  name = "rustls-webpki"
1131
- version = "0.102.2"
1154
+ version = "0.102.5"
1132
1155
  source = "registry+https://github.com/rust-lang/crates.io-index"
1133
- checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610"
1156
+ checksum = "f9a6fccd794a42c2c105b513a2f62bc3fd8f3ba57a4593677ceb0bd035164d78"
1134
1157
  dependencies = [
1135
1158
  "ring",
1136
1159
  "rustls-pki-types",
@@ -1138,22 +1161,22 @@ dependencies = [
1138
1161
  ]
1139
1162
 
1140
1163
  [[package]]
1141
- name = "ryu"
1164
+ name = "rustversion"
1142
1165
  version = "1.0.15"
1143
1166
  source = "registry+https://github.com/rust-lang/crates.io-index"
1144
- checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
1167
+ checksum = "80af6f9131f277a45a3fba6ce8e2258037bb0477a67e610d3c1fe046ab31de47"
1145
1168
 
1146
1169
  [[package]]
1147
- name = "scopeguard"
1148
- version = "1.2.0"
1170
+ name = "ryu"
1171
+ version = "1.0.17"
1149
1172
  source = "registry+https://github.com/rust-lang/crates.io-index"
1150
- checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1173
+ checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
1151
1174
 
1152
1175
  [[package]]
1153
1176
  name = "serde"
1154
- version = "1.0.197"
1177
+ version = "1.0.207"
1155
1178
  source = "registry+https://github.com/rust-lang/crates.io-index"
1156
- checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
1179
+ checksum = "5665e14a49a4ea1b91029ba7d3bca9f299e1f7cfa194388ccc20f14743e784f2"
1157
1180
  dependencies = [
1158
1181
  "serde_derive",
1159
1182
  ]
@@ -1171,9 +1194,9 @@ dependencies = [
1171
1194
 
1172
1195
  [[package]]
1173
1196
  name = "serde_derive"
1174
- version = "1.0.197"
1197
+ version = "1.0.207"
1175
1198
  source = "registry+https://github.com/rust-lang/crates.io-index"
1176
- checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
1199
+ checksum = "6aea2634c86b0e8ef2cfdc0c340baede54ec27b1e46febd7f80dffb2aa44a00e"
1177
1200
  dependencies = [
1178
1201
  "proc-macro2",
1179
1202
  "quote",
@@ -1197,24 +1220,46 @@ version = "0.3.11"
1197
1220
  source = "registry+https://github.com/rust-lang/crates.io-index"
1198
1221
  checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
1199
1222
 
1200
- [[package]]
1201
- name = "smallvec"
1202
- version = "1.13.1"
1203
- source = "registry+https://github.com/rust-lang/crates.io-index"
1204
- checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
1205
-
1206
1223
  [[package]]
1207
1224
  name = "spin"
1208
1225
  version = "0.9.8"
1209
1226
  source = "registry+https://github.com/rust-lang/crates.io-index"
1210
1227
  checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1211
1228
 
1229
+ [[package]]
1230
+ name = "strsim"
1231
+ version = "0.10.0"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
1234
+
1212
1235
  [[package]]
1213
1236
  name = "strsim"
1214
1237
  version = "0.11.0"
1215
1238
  source = "registry+https://github.com/rust-lang/crates.io-index"
1216
1239
  checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01"
1217
1240
 
1241
+ [[package]]
1242
+ name = "strum"
1243
+ version = "0.26.2"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29"
1246
+ dependencies = [
1247
+ "strum_macros",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "strum_macros"
1252
+ version = "0.26.2"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946"
1255
+ dependencies = [
1256
+ "heck 0.4.1",
1257
+ "proc-macro2",
1258
+ "quote",
1259
+ "rustversion",
1260
+ "syn",
1261
+ ]
1262
+
1218
1263
  [[package]]
1219
1264
  name = "subtle"
1220
1265
  version = "2.5.0"
@@ -1223,9 +1268,9 @@ checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
1223
1268
 
1224
1269
  [[package]]
1225
1270
  name = "syn"
1226
- version = "2.0.48"
1271
+ version = "2.0.72"
1227
1272
  source = "registry+https://github.com/rust-lang/crates.io-index"
1228
- checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
1273
+ checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
1229
1274
  dependencies = [
1230
1275
  "proc-macro2",
1231
1276
  "quote",
@@ -1234,9 +1279,9 @@ dependencies = [
1234
1279
 
1235
1280
  [[package]]
1236
1281
  name = "tar"
1237
- version = "0.4.40"
1282
+ version = "0.4.41"
1238
1283
  source = "registry+https://github.com/rust-lang/crates.io-index"
1239
- checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb"
1284
+ checksum = "cb797dad5fb5b76fcf519e702f4a589483b5ef06567f160c392832c1f5e44909"
1240
1285
  dependencies = [
1241
1286
  "filetime",
1242
1287
  "libc",
@@ -1245,24 +1290,37 @@ dependencies = [
1245
1290
 
1246
1291
  [[package]]
1247
1292
  name = "target-lexicon"
1248
- version = "0.12.13"
1293
+ version = "0.12.14"
1249
1294
  source = "registry+https://github.com/rust-lang/crates.io-index"
1250
- checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae"
1295
+ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
1296
+
1297
+ [[package]]
1298
+ name = "tests"
1299
+ version = "0.10.0"
1300
+ dependencies = [
1301
+ "jpreprocess",
1302
+ "jpreprocess-core",
1303
+ "jpreprocess-dictionary",
1304
+ "jpreprocess-dictionary-builder",
1305
+ "jpreprocess-jpcommon",
1306
+ "jpreprocess-njd",
1307
+ "lindera-tokenizer",
1308
+ ]
1251
1309
 
1252
1310
  [[package]]
1253
1311
  name = "thiserror"
1254
- version = "1.0.57"
1312
+ version = "1.0.63"
1255
1313
  source = "registry+https://github.com/rust-lang/crates.io-index"
1256
- checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b"
1314
+ checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
1257
1315
  dependencies = [
1258
1316
  "thiserror-impl",
1259
1317
  ]
1260
1318
 
1261
1319
  [[package]]
1262
1320
  name = "thiserror-impl"
1263
- version = "1.0.57"
1321
+ version = "1.0.63"
1264
1322
  source = "registry+https://github.com/rust-lang/crates.io-index"
1265
- checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81"
1323
+ checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
1266
1324
  dependencies = [
1267
1325
  "proc-macro2",
1268
1326
  "quote",
@@ -1286,9 +1344,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1286
1344
 
1287
1345
  [[package]]
1288
1346
  name = "unicode-bidi"
1289
- version = "0.3.13"
1347
+ version = "0.3.15"
1290
1348
  source = "registry+https://github.com/rust-lang/crates.io-index"
1291
- checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
1349
+ checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
1292
1350
 
1293
1351
  [[package]]
1294
1352
  name = "unicode-ident"
@@ -1298,9 +1356,9 @@ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
1298
1356
 
1299
1357
  [[package]]
1300
1358
  name = "unicode-normalization"
1301
- version = "0.1.22"
1359
+ version = "0.1.23"
1302
1360
  source = "registry+https://github.com/rust-lang/crates.io-index"
1303
- checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
1361
+ checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
1304
1362
  dependencies = [
1305
1363
  "tinyvec",
1306
1364
  ]
@@ -1319,25 +1377,24 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1319
1377
 
1320
1378
  [[package]]
1321
1379
  name = "ureq"
1322
- version = "2.9.6"
1380
+ version = "2.10.1"
1323
1381
  source = "registry+https://github.com/rust-lang/crates.io-index"
1324
- checksum = "11f214ce18d8b2cbe84ed3aa6486ed3f5b285cf8d8fbdbce9f3f767a724adc35"
1382
+ checksum = "b74fc6b57825be3373f7054754755f03ac3a8f5d70015ccad699ba2029956f4a"
1325
1383
  dependencies = [
1326
1384
  "base64",
1327
1385
  "log",
1328
1386
  "once_cell",
1329
1387
  "rustls",
1330
1388
  "rustls-pki-types",
1331
- "rustls-webpki",
1332
1389
  "url",
1333
1390
  "webpki-roots",
1334
1391
  ]
1335
1392
 
1336
1393
  [[package]]
1337
1394
  name = "url"
1338
- version = "2.3.1"
1395
+ version = "2.5.0"
1339
1396
  source = "registry+https://github.com/rust-lang/crates.io-index"
1340
- checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
1397
+ checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
1341
1398
  dependencies = [
1342
1399
  "form_urlencoded",
1343
1400
  "idna",
@@ -1364,9 +1421,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1364
1421
 
1365
1422
  [[package]]
1366
1423
  name = "wasm-bindgen"
1367
- version = "0.2.88"
1424
+ version = "0.2.92"
1368
1425
  source = "registry+https://github.com/rust-lang/crates.io-index"
1369
- checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce"
1426
+ checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
1370
1427
  dependencies = [
1371
1428
  "cfg-if",
1372
1429
  "wasm-bindgen-macro",
@@ -1374,9 +1431,9 @@ dependencies = [
1374
1431
 
1375
1432
  [[package]]
1376
1433
  name = "wasm-bindgen-backend"
1377
- version = "0.2.88"
1434
+ version = "0.2.92"
1378
1435
  source = "registry+https://github.com/rust-lang/crates.io-index"
1379
- checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217"
1436
+ checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
1380
1437
  dependencies = [
1381
1438
  "bumpalo",
1382
1439
  "log",
@@ -1389,9 +1446,9 @@ dependencies = [
1389
1446
 
1390
1447
  [[package]]
1391
1448
  name = "wasm-bindgen-macro"
1392
- version = "0.2.88"
1449
+ version = "0.2.92"
1393
1450
  source = "registry+https://github.com/rust-lang/crates.io-index"
1394
- checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2"
1451
+ checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
1395
1452
  dependencies = [
1396
1453
  "quote",
1397
1454
  "wasm-bindgen-macro-support",
@@ -1399,9 +1456,9 @@ dependencies = [
1399
1456
 
1400
1457
  [[package]]
1401
1458
  name = "wasm-bindgen-macro-support"
1402
- version = "0.2.88"
1459
+ version = "0.2.92"
1403
1460
  source = "registry+https://github.com/rust-lang/crates.io-index"
1404
- checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907"
1461
+ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
1405
1462
  dependencies = [
1406
1463
  "proc-macro2",
1407
1464
  "quote",
@@ -1412,9 +1469,9 @@ dependencies = [
1412
1469
 
1413
1470
  [[package]]
1414
1471
  name = "wasm-bindgen-shared"
1415
- version = "0.2.88"
1472
+ version = "0.2.92"
1416
1473
  source = "registry+https://github.com/rust-lang/crates.io-index"
1417
- checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b"
1474
+ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
1418
1475
 
1419
1476
  [[package]]
1420
1477
  name = "webpki-roots"
@@ -1427,18 +1484,18 @@ dependencies = [
1427
1484
 
1428
1485
  [[package]]
1429
1486
  name = "windows-sys"
1430
- version = "0.48.0"
1487
+ version = "0.52.0"
1431
1488
  source = "registry+https://github.com/rust-lang/crates.io-index"
1432
- checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1489
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1433
1490
  dependencies = [
1434
1491
  "windows-targets",
1435
1492
  ]
1436
1493
 
1437
1494
  [[package]]
1438
1495
  name = "windows-targets"
1439
- version = "0.48.5"
1496
+ version = "0.52.4"
1440
1497
  source = "registry+https://github.com/rust-lang/crates.io-index"
1441
- checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1498
+ checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
1442
1499
  dependencies = [
1443
1500
  "windows_aarch64_gnullvm",
1444
1501
  "windows_aarch64_msvc",
@@ -1451,60 +1508,62 @@ dependencies = [
1451
1508
 
1452
1509
  [[package]]
1453
1510
  name = "windows_aarch64_gnullvm"
1454
- version = "0.48.5"
1511
+ version = "0.52.4"
1455
1512
  source = "registry+https://github.com/rust-lang/crates.io-index"
1456
- checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1513
+ checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
1457
1514
 
1458
1515
  [[package]]
1459
1516
  name = "windows_aarch64_msvc"
1460
- version = "0.48.5"
1517
+ version = "0.52.4"
1461
1518
  source = "registry+https://github.com/rust-lang/crates.io-index"
1462
- checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1519
+ checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
1463
1520
 
1464
1521
  [[package]]
1465
1522
  name = "windows_i686_gnu"
1466
- version = "0.48.5"
1523
+ version = "0.52.4"
1467
1524
  source = "registry+https://github.com/rust-lang/crates.io-index"
1468
- checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1525
+ checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
1469
1526
 
1470
1527
  [[package]]
1471
1528
  name = "windows_i686_msvc"
1472
- version = "0.48.5"
1529
+ version = "0.52.4"
1473
1530
  source = "registry+https://github.com/rust-lang/crates.io-index"
1474
- checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1531
+ checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
1475
1532
 
1476
1533
  [[package]]
1477
1534
  name = "windows_x86_64_gnu"
1478
- version = "0.48.5"
1535
+ version = "0.52.4"
1479
1536
  source = "registry+https://github.com/rust-lang/crates.io-index"
1480
- checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1537
+ checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
1481
1538
 
1482
1539
  [[package]]
1483
1540
  name = "windows_x86_64_gnullvm"
1484
- version = "0.48.5"
1541
+ version = "0.52.4"
1485
1542
  source = "registry+https://github.com/rust-lang/crates.io-index"
1486
- checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1543
+ checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
1487
1544
 
1488
1545
  [[package]]
1489
1546
  name = "windows_x86_64_msvc"
1490
- version = "0.48.5"
1547
+ version = "0.52.4"
1491
1548
  source = "registry+https://github.com/rust-lang/crates.io-index"
1492
- checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1549
+ checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
1493
1550
 
1494
1551
  [[package]]
1495
1552
  name = "xattr"
1496
- version = "1.0.1"
1553
+ version = "1.3.1"
1497
1554
  source = "registry+https://github.com/rust-lang/crates.io-index"
1498
- checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985"
1555
+ checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
1499
1556
  dependencies = [
1500
1557
  "libc",
1558
+ "linux-raw-sys",
1559
+ "rustix",
1501
1560
  ]
1502
1561
 
1503
1562
  [[package]]
1504
1563
  name = "yada"
1505
- version = "0.5.0"
1564
+ version = "0.5.1"
1506
1565
  source = "registry+https://github.com/rust-lang/crates.io-index"
1507
- checksum = "b6d12cb7a57bbf2ab670ed9545bae3648048547f9039279a89ce000208e585c1"
1566
+ checksum = "aed111bd9e48a802518765906cbdadf0b45afb72b9c81ab049a3b86252adffdd"
1508
1567
 
1509
1568
  [[package]]
1510
1569
  name = "zerocopy"