polyglot-piranha 0.3.27__tar.gz → 0.3.31__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 (77) hide show
  1. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/Cargo.lock +168 -237
  2. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/Cargo.toml +1 -1
  3. polyglot_piranha-0.3.31/NOTICE +5 -0
  4. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/PKG-INFO +9 -8
  5. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/README.md +7 -6
  6. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/pyproject.toml +2 -0
  7. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/default_configs.rs +8 -0
  8. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/edit.rs +2 -2
  9. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/matches.rs +14 -5
  10. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/piranha_arguments.rs +23 -9
  11. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/piranha_output.rs +2 -2
  12. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/rule.rs +16 -3
  13. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/unit_tests/piranha_arguments_test.rs +20 -0
  14. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/unit_tests/rule_test.rs +65 -0
  15. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/unit_tests/scopes_test.rs +2 -2
  16. polyglot_piranha-0.3.31/src/models/unit_tests/testdata/custom_builtin/edges.toml +9 -0
  17. polyglot_piranha-0.3.31/src/models/unit_tests/testdata/custom_builtin/rules.toml +35 -0
  18. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/utilities/tree_sitter_utilities.rs +1 -1
  19. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/utilities/unit_tests/utilities_test.rs +1 -1
  20. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/LICENSE +0 -0
  21. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/plugins/pyproject.toml +0 -0
  22. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/go/edges.toml +0 -0
  23. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/go/rules.toml +0 -0
  24. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/go/scope_config.toml +0 -0
  25. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/java/edges.toml +0 -0
  26. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/java/rules.toml +0 -0
  27. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/java/scope_config.toml +0 -0
  28. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/java_cs/edges.toml +0 -0
  29. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/java_cs/rules.toml +0 -0
  30. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/java_cs/scope_config.toml +0 -0
  31. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/kt/edges.toml +0 -0
  32. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/kt/rules.toml +0 -0
  33. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/kt/scope_config.toml +0 -0
  34. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/ruby/edges.toml +0 -0
  35. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/ruby/rules.toml +0 -0
  36. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/ruby/scope_config.toml +0 -0
  37. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/scala/scope_config.toml +0 -0
  38. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/swift/edges.toml +0 -0
  39. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/swift/rules.toml +0 -0
  40. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/cleanup_rules/swift/scope_config.toml +0 -0
  41. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/df/README.md +0 -0
  42. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/df/analysis.rs +0 -0
  43. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/df/mod.rs +0 -0
  44. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/df/tag_analysis.rs +0 -0
  45. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/df/unit_tests/tag_analysis_test.rs +0 -0
  46. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/df/utils.rs +0 -0
  47. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/lib.rs +0 -0
  48. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/main.rs +0 -0
  49. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/capture_group_patterns.rs +0 -0
  50. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/concrete_syntax.rs +0 -0
  51. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/filter.rs +0 -0
  52. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/language.rs +0 -0
  53. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/mod.rs +0 -0
  54. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/outgoing_edges.rs +0 -0
  55. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/rule_graph.rs +0 -0
  56. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/rule_store.rs +0 -0
  57. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/scopes.rs +0 -0
  58. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/source_code_unit.rs +0 -0
  59. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/unit_tests/concrete_syntax_test.rs +0 -0
  60. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/unit_tests/rule_graph_validation_test.rs +0 -0
  61. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/models/unit_tests/source_code_unit_test.rs +0 -0
  62. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/tests/mod.rs +0 -0
  63. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/tests/test_piranha_go.rs +0 -0
  64. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/tests/test_piranha_java.rs +0 -0
  65. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/tests/test_piranha_kt.rs +0 -0
  66. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/tests/test_piranha_python.rs +0 -0
  67. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/tests/test_piranha_scala.rs +0 -0
  68. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/tests/test_piranha_scm.rs +0 -0
  69. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/tests/test_piranha_strings.rs +0 -0
  70. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/tests/test_piranha_swift.rs +0 -0
  71. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/tests/test_piranha_thrift.rs +0 -0
  72. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/tests/test_piranha_ts.rs +0 -0
  73. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/tests/test_piranha_tsx.rs +0 -0
  74. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/tests/test_piranha_yaml.rs +0 -0
  75. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/utilities/mod.rs +0 -0
  76. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/utilities/regex_utilities.rs +0 -0
  77. {polyglot_piranha-0.3.27 → polyglot_piranha-0.3.31}/src/utilities/unit_tests/tree_sitter_utilities_test.rs +0 -0
@@ -1,6 +1,6 @@
1
1
  # This file is automatically @generated by Cargo.
2
2
  # It is not intended for manual editing.
3
- version = 3
3
+ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "aho-corasick"
@@ -13,9 +13,9 @@ dependencies = [
13
13
 
14
14
  [[package]]
15
15
  name = "anstream"
16
- version = "0.6.15"
16
+ version = "0.6.18"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
18
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
19
19
  dependencies = [
20
20
  "anstyle",
21
21
  "anstyle-parse",
@@ -28,36 +28,37 @@ dependencies = [
28
28
 
29
29
  [[package]]
30
30
  name = "anstyle"
31
- version = "1.0.8"
31
+ version = "1.0.10"
32
32
  source = "registry+https://github.com/rust-lang/crates.io-index"
33
- checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
33
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
34
34
 
35
35
  [[package]]
36
36
  name = "anstyle-parse"
37
- version = "0.2.5"
37
+ version = "0.2.6"
38
38
  source = "registry+https://github.com/rust-lang/crates.io-index"
39
- checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
39
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
40
40
  dependencies = [
41
41
  "utf8parse",
42
42
  ]
43
43
 
44
44
  [[package]]
45
45
  name = "anstyle-query"
46
- version = "1.1.1"
46
+ version = "1.1.2"
47
47
  source = "registry+https://github.com/rust-lang/crates.io-index"
48
- checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
48
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
49
49
  dependencies = [
50
- "windows-sys 0.52.0",
50
+ "windows-sys",
51
51
  ]
52
52
 
53
53
  [[package]]
54
54
  name = "anstyle-wincon"
55
- version = "3.0.4"
55
+ version = "3.0.8"
56
56
  source = "registry+https://github.com/rust-lang/crates.io-index"
57
- checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
57
+ checksum = "6680de5231bd6ee4c6191b8a1325daa282b415391ec9d3a37bd34f2060dc73fa"
58
58
  dependencies = [
59
59
  "anstyle",
60
- "windows-sys 0.52.0",
60
+ "once_cell_polyfill",
61
+ "windows-sys",
61
62
  ]
62
63
 
63
64
  [[package]]
@@ -68,9 +69,9 @@ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
68
69
 
69
70
  [[package]]
70
71
  name = "assert_cmd"
71
- version = "2.0.16"
72
+ version = "2.0.17"
72
73
  source = "registry+https://github.com/rust-lang/crates.io-index"
73
- checksum = "dc1835b7f27878de8525dc71410b5a31cdcc5f230aed5ba5df968e09c201b23d"
74
+ checksum = "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66"
74
75
  dependencies = [
75
76
  "anstyle",
76
77
  "bstr",
@@ -84,21 +85,21 @@ dependencies = [
84
85
 
85
86
  [[package]]
86
87
  name = "autocfg"
87
- version = "1.3.0"
88
+ version = "1.4.0"
88
89
  source = "registry+https://github.com/rust-lang/crates.io-index"
89
- checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
90
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
90
91
 
91
92
  [[package]]
92
93
  name = "bitflags"
93
- version = "2.6.0"
94
+ version = "2.9.1"
94
95
  source = "registry+https://github.com/rust-lang/crates.io-index"
95
- checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
96
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
96
97
 
97
98
  [[package]]
98
99
  name = "bstr"
99
- version = "1.10.0"
100
+ version = "1.12.0"
100
101
  source = "registry+https://github.com/rust-lang/crates.io-index"
101
- checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c"
102
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
102
103
  dependencies = [
103
104
  "memchr",
104
105
  "regex-automata",
@@ -125,9 +126,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
125
126
 
126
127
  [[package]]
127
128
  name = "clap"
128
- version = "4.5.16"
129
+ version = "4.5.38"
129
130
  source = "registry+https://github.com/rust-lang/crates.io-index"
130
- checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019"
131
+ checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000"
131
132
  dependencies = [
132
133
  "clap_builder",
133
134
  "clap_derive",
@@ -135,9 +136,9 @@ dependencies = [
135
136
 
136
137
  [[package]]
137
138
  name = "clap_builder"
138
- version = "4.5.15"
139
+ version = "4.5.38"
139
140
  source = "registry+https://github.com/rust-lang/crates.io-index"
140
- checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6"
141
+ checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120"
141
142
  dependencies = [
142
143
  "anstream",
143
144
  "anstyle",
@@ -147,36 +148,36 @@ dependencies = [
147
148
 
148
149
  [[package]]
149
150
  name = "clap_derive"
150
- version = "4.5.13"
151
+ version = "4.5.32"
151
152
  source = "registry+https://github.com/rust-lang/crates.io-index"
152
- checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0"
153
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
153
154
  dependencies = [
154
155
  "heck 0.5.0",
155
156
  "proc-macro2",
156
157
  "quote",
157
- "syn 2.0.77",
158
+ "syn 2.0.101",
158
159
  ]
159
160
 
160
161
  [[package]]
161
162
  name = "clap_lex"
162
- version = "0.7.2"
163
+ version = "0.7.4"
163
164
  source = "registry+https://github.com/rust-lang/crates.io-index"
164
- checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
165
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
165
166
 
166
167
  [[package]]
167
168
  name = "colorchoice"
168
- version = "1.0.2"
169
+ version = "1.0.3"
169
170
  source = "registry+https://github.com/rust-lang/crates.io-index"
170
- checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
171
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
171
172
 
172
173
  [[package]]
173
174
  name = "colored"
174
- version = "2.1.0"
175
+ version = "2.2.0"
175
176
  source = "registry+https://github.com/rust-lang/crates.io-index"
176
- checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8"
177
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
177
178
  dependencies = [
178
179
  "lazy_static",
179
- "windows-sys 0.48.0",
180
+ "windows-sys",
180
181
  ]
181
182
 
182
183
  [[package]]
@@ -194,18 +195,18 @@ dependencies = [
194
195
 
195
196
  [[package]]
196
197
  name = "crossbeam-channel"
197
- version = "0.5.13"
198
+ version = "0.5.15"
198
199
  source = "registry+https://github.com/rust-lang/crates.io-index"
199
- checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
200
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
200
201
  dependencies = [
201
202
  "crossbeam-utils",
202
203
  ]
203
204
 
204
205
  [[package]]
205
206
  name = "crossbeam-deque"
206
- version = "0.8.5"
207
+ version = "0.8.6"
207
208
  source = "registry+https://github.com/rust-lang/crates.io-index"
208
- checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
209
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
209
210
  dependencies = [
210
211
  "crossbeam-epoch",
211
212
  "crossbeam-utils",
@@ -222,27 +223,27 @@ dependencies = [
222
223
 
223
224
  [[package]]
224
225
  name = "crossbeam-queue"
225
- version = "0.3.11"
226
+ version = "0.3.12"
226
227
  source = "registry+https://github.com/rust-lang/crates.io-index"
227
- checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
228
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
228
229
  dependencies = [
229
230
  "crossbeam-utils",
230
231
  ]
231
232
 
232
233
  [[package]]
233
234
  name = "crossbeam-utils"
234
- version = "0.8.20"
235
+ version = "0.8.21"
235
236
  source = "registry+https://github.com/rust-lang/crates.io-index"
236
- checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
237
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
237
238
 
238
239
  [[package]]
239
240
  name = "ctrlc"
240
- version = "3.4.5"
241
+ version = "3.4.7"
241
242
  source = "registry+https://github.com/rust-lang/crates.io-index"
242
- checksum = "90eeab0aa92f3f9b4e87f258c72b139c207d251f9cbc1080a0086b86a8870dd3"
243
+ checksum = "46f93780a459b7d656ef7f071fe699c4d3d2cb201c4b24d085b6ddc505276e73"
243
244
  dependencies = [
244
245
  "nix",
245
- "windows-sys 0.59.0",
246
+ "windows-sys",
246
247
  ]
247
248
 
248
249
  [[package]]
@@ -325,9 +326,9 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
325
326
 
326
327
  [[package]]
327
328
  name = "either"
328
- version = "1.13.0"
329
+ version = "1.15.0"
329
330
  source = "registry+https://github.com/rust-lang/crates.io-index"
330
- checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
331
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
331
332
 
332
333
  [[package]]
333
334
  name = "env_logger"
@@ -344,15 +345,15 @@ dependencies = [
344
345
 
345
346
  [[package]]
346
347
  name = "equivalent"
347
- version = "1.0.1"
348
+ version = "1.0.2"
348
349
  source = "registry+https://github.com/rust-lang/crates.io-index"
349
- checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
350
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
350
351
 
351
352
  [[package]]
352
353
  name = "float-cmp"
353
- version = "0.9.0"
354
+ version = "0.10.0"
354
355
  source = "registry+https://github.com/rust-lang/crates.io-index"
355
- checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
356
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
356
357
  dependencies = [
357
358
  "num-traits",
358
359
  ]
@@ -371,27 +372,27 @@ checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
371
372
 
372
373
  [[package]]
373
374
  name = "getset"
374
- version = "0.1.2"
375
+ version = "0.1.5"
375
376
  source = "registry+https://github.com/rust-lang/crates.io-index"
376
- checksum = "e45727250e75cc04ff2846a66397da8ef2b3db8e40e0cef4df67950a07621eb9"
377
+ checksum = "f3586f256131df87204eb733da72e3d3eb4f343c639f4b7be279ac7c48baeafe"
377
378
  dependencies = [
378
- "proc-macro-error",
379
+ "proc-macro-error2",
379
380
  "proc-macro2",
380
381
  "quote",
381
- "syn 1.0.109",
382
+ "syn 2.0.101",
382
383
  ]
383
384
 
384
385
  [[package]]
385
386
  name = "glob"
386
- version = "0.3.1"
387
+ version = "0.3.2"
387
388
  source = "registry+https://github.com/rust-lang/crates.io-index"
388
- checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
389
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
389
390
 
390
391
  [[package]]
391
392
  name = "hashbrown"
392
- version = "0.14.5"
393
+ version = "0.15.3"
393
394
  source = "registry+https://github.com/rust-lang/crates.io-index"
394
- checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
395
+ checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
395
396
 
396
397
  [[package]]
397
398
  name = "heck"
@@ -407,15 +408,15 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
407
408
 
408
409
  [[package]]
409
410
  name = "hermit-abi"
410
- version = "0.4.0"
411
+ version = "0.5.1"
411
412
  source = "registry+https://github.com/rust-lang/crates.io-index"
412
- checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
413
+ checksum = "f154ce46856750ed433c8649605bf7ed2de3bc35fd9d2a9f30cddd873c80cb08"
413
414
 
414
415
  [[package]]
415
416
  name = "humantime"
416
- version = "2.1.0"
417
+ version = "2.2.0"
417
418
  source = "registry+https://github.com/rust-lang/crates.io-index"
418
- checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
419
+ checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
419
420
 
420
421
  [[package]]
421
422
  name = "ident_case"
@@ -425,9 +426,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
425
426
 
426
427
  [[package]]
427
428
  name = "indexmap"
428
- version = "2.5.0"
429
+ version = "2.9.0"
429
430
  source = "registry+https://github.com/rust-lang/crates.io-index"
430
- checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5"
431
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
431
432
  dependencies = [
432
433
  "equivalent",
433
434
  "hashbrown",
@@ -435,19 +436,19 @@ dependencies = [
435
436
 
436
437
  [[package]]
437
438
  name = "indoc"
438
- version = "2.0.5"
439
+ version = "2.0.6"
439
440
  source = "registry+https://github.com/rust-lang/crates.io-index"
440
- checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
441
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
441
442
 
442
443
  [[package]]
443
444
  name = "is-terminal"
444
- version = "0.4.13"
445
+ version = "0.4.16"
445
446
  source = "registry+https://github.com/rust-lang/crates.io-index"
446
- checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
447
+ checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
447
448
  dependencies = [
448
449
  "hermit-abi",
449
450
  "libc",
450
- "windows-sys 0.52.0",
451
+ "windows-sys",
451
452
  ]
452
453
 
453
454
  [[package]]
@@ -467,9 +468,9 @@ dependencies = [
467
468
 
468
469
  [[package]]
469
470
  name = "itoa"
470
- version = "1.0.11"
471
+ version = "1.0.15"
471
472
  source = "registry+https://github.com/rust-lang/crates.io-index"
472
- checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
473
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
473
474
 
474
475
  [[package]]
475
476
  name = "json"
@@ -495,9 +496,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
495
496
 
496
497
  [[package]]
497
498
  name = "libc"
498
- version = "0.2.158"
499
+ version = "0.2.172"
499
500
  source = "registry+https://github.com/rust-lang/crates.io-index"
500
- checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
501
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
501
502
 
502
503
  [[package]]
503
504
  name = "lock_api"
@@ -511,9 +512,9 @@ dependencies = [
511
512
 
512
513
  [[package]]
513
514
  name = "log"
514
- version = "0.4.22"
515
+ version = "0.4.27"
515
516
  source = "registry+https://github.com/rust-lang/crates.io-index"
516
- checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
517
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
517
518
 
518
519
  [[package]]
519
520
  name = "memchr"
@@ -532,9 +533,9 @@ dependencies = [
532
533
 
533
534
  [[package]]
534
535
  name = "nix"
535
- version = "0.29.0"
536
+ version = "0.30.1"
536
537
  source = "registry+https://github.com/rust-lang/crates.io-index"
537
- checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
538
+ checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
538
539
  dependencies = [
539
540
  "bitflags",
540
541
  "cfg-if",
@@ -559,9 +560,15 @@ dependencies = [
559
560
 
560
561
  [[package]]
561
562
  name = "once_cell"
562
- version = "1.19.0"
563
+ version = "1.21.3"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
566
+
567
+ [[package]]
568
+ name = "once_cell_polyfill"
569
+ version = "1.70.1"
563
570
  source = "registry+https://github.com/rust-lang/crates.io-index"
564
- checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
571
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
565
572
 
566
573
  [[package]]
567
574
  name = "parking_lot"
@@ -583,12 +590,12 @@ dependencies = [
583
590
  "libc",
584
591
  "redox_syscall",
585
592
  "smallvec",
586
- "windows-targets 0.52.6",
593
+ "windows-targets",
587
594
  ]
588
595
 
589
596
  [[package]]
590
597
  name = "piranha"
591
- version = "0.3.27"
598
+ version = "0.3.31"
592
599
  dependencies = [
593
600
  "assert_cmd",
594
601
  "cc",
@@ -631,15 +638,15 @@ dependencies = [
631
638
 
632
639
  [[package]]
633
640
  name = "portable-atomic"
634
- version = "1.7.0"
641
+ version = "1.11.0"
635
642
  source = "registry+https://github.com/rust-lang/crates.io-index"
636
- checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
643
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
637
644
 
638
645
  [[package]]
639
646
  name = "predicates"
640
- version = "3.1.2"
647
+ version = "3.1.3"
641
648
  source = "registry+https://github.com/rust-lang/crates.io-index"
642
- checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97"
649
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
643
650
  dependencies = [
644
651
  "anstyle",
645
652
  "difflib",
@@ -651,49 +658,47 @@ dependencies = [
651
658
 
652
659
  [[package]]
653
660
  name = "predicates-core"
654
- version = "1.0.8"
661
+ version = "1.0.9"
655
662
  source = "registry+https://github.com/rust-lang/crates.io-index"
656
- checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931"
663
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
657
664
 
658
665
  [[package]]
659
666
  name = "predicates-tree"
660
- version = "1.0.11"
667
+ version = "1.0.12"
661
668
  source = "registry+https://github.com/rust-lang/crates.io-index"
662
- checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13"
669
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
663
670
  dependencies = [
664
671
  "predicates-core",
665
672
  "termtree",
666
673
  ]
667
674
 
668
675
  [[package]]
669
- name = "proc-macro-error"
670
- version = "1.0.4"
676
+ name = "proc-macro-error-attr2"
677
+ version = "2.0.0"
671
678
  source = "registry+https://github.com/rust-lang/crates.io-index"
672
- checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
679
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
673
680
  dependencies = [
674
- "proc-macro-error-attr",
675
681
  "proc-macro2",
676
682
  "quote",
677
- "syn 1.0.109",
678
- "version_check",
679
683
  ]
680
684
 
681
685
  [[package]]
682
- name = "proc-macro-error-attr"
683
- version = "1.0.4"
686
+ name = "proc-macro-error2"
687
+ version = "2.0.1"
684
688
  source = "registry+https://github.com/rust-lang/crates.io-index"
685
- checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
689
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
686
690
  dependencies = [
691
+ "proc-macro-error-attr2",
687
692
  "proc-macro2",
688
693
  "quote",
689
- "version_check",
694
+ "syn 2.0.101",
690
695
  ]
691
696
 
692
697
  [[package]]
693
698
  name = "proc-macro2"
694
- version = "1.0.86"
699
+ version = "1.0.95"
695
700
  source = "registry+https://github.com/rust-lang/crates.io-index"
696
- checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
701
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
697
702
  dependencies = [
698
703
  "unicode-ident",
699
704
  ]
@@ -756,7 +761,7 @@ dependencies = [
756
761
  "proc-macro2",
757
762
  "pyo3-macros-backend",
758
763
  "quote",
759
- "syn 2.0.77",
764
+ "syn 2.0.101",
760
765
  ]
761
766
 
762
767
  [[package]]
@@ -769,14 +774,14 @@ dependencies = [
769
774
  "proc-macro2",
770
775
  "pyo3-build-config",
771
776
  "quote",
772
- "syn 2.0.77",
777
+ "syn 2.0.101",
773
778
  ]
774
779
 
775
780
  [[package]]
776
781
  name = "quote"
777
- version = "1.0.37"
782
+ version = "1.0.40"
778
783
  source = "registry+https://github.com/rust-lang/crates.io-index"
779
- checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
784
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
780
785
  dependencies = [
781
786
  "proc-macro2",
782
787
  ]
@@ -840,18 +845,18 @@ dependencies = [
840
845
 
841
846
  [[package]]
842
847
  name = "redox_syscall"
843
- version = "0.5.3"
848
+ version = "0.5.12"
844
849
  source = "registry+https://github.com/rust-lang/crates.io-index"
845
- checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
850
+ checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
846
851
  dependencies = [
847
852
  "bitflags",
848
853
  ]
849
854
 
850
855
  [[package]]
851
856
  name = "regex"
852
- version = "1.10.6"
857
+ version = "1.11.1"
853
858
  source = "registry+https://github.com/rust-lang/crates.io-index"
854
- checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
859
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
855
860
  dependencies = [
856
861
  "aho-corasick",
857
862
  "memchr",
@@ -861,9 +866,9 @@ dependencies = [
861
866
 
862
867
  [[package]]
863
868
  name = "regex-automata"
864
- version = "0.4.7"
869
+ version = "0.4.9"
865
870
  source = "registry+https://github.com/rust-lang/crates.io-index"
866
- checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
871
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
867
872
  dependencies = [
868
873
  "aho-corasick",
869
874
  "memchr",
@@ -872,9 +877,9 @@ dependencies = [
872
877
 
873
878
  [[package]]
874
879
  name = "regex-syntax"
875
- version = "0.8.4"
880
+ version = "0.8.5"
876
881
  source = "registry+https://github.com/rust-lang/crates.io-index"
877
- checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
882
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
878
883
 
879
884
  [[package]]
880
885
  name = "remove_dir_all"
@@ -887,9 +892,9 @@ dependencies = [
887
892
 
888
893
  [[package]]
889
894
  name = "ryu"
890
- version = "1.0.18"
895
+ version = "1.0.20"
891
896
  source = "registry+https://github.com/rust-lang/crates.io-index"
892
- checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
897
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
893
898
 
894
899
  [[package]]
895
900
  name = "scopeguard"
@@ -899,29 +904,29 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
899
904
 
900
905
  [[package]]
901
906
  name = "serde"
902
- version = "1.0.209"
907
+ version = "1.0.219"
903
908
  source = "registry+https://github.com/rust-lang/crates.io-index"
904
- checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09"
909
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
905
910
  dependencies = [
906
911
  "serde_derive",
907
912
  ]
908
913
 
909
914
  [[package]]
910
915
  name = "serde_derive"
911
- version = "1.0.209"
916
+ version = "1.0.219"
912
917
  source = "registry+https://github.com/rust-lang/crates.io-index"
913
- checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170"
918
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
914
919
  dependencies = [
915
920
  "proc-macro2",
916
921
  "quote",
917
- "syn 2.0.77",
922
+ "syn 2.0.101",
918
923
  ]
919
924
 
920
925
  [[package]]
921
926
  name = "serde_json"
922
- version = "1.0.127"
927
+ version = "1.0.140"
923
928
  source = "registry+https://github.com/rust-lang/crates.io-index"
924
- checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad"
929
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
925
930
  dependencies = [
926
931
  "itoa",
927
932
  "memchr",
@@ -931,18 +936,18 @@ dependencies = [
931
936
 
932
937
  [[package]]
933
938
  name = "serde_spanned"
934
- version = "0.6.7"
939
+ version = "0.6.8"
935
940
  source = "registry+https://github.com/rust-lang/crates.io-index"
936
- checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d"
941
+ checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
937
942
  dependencies = [
938
943
  "serde",
939
944
  ]
940
945
 
941
946
  [[package]]
942
947
  name = "smallvec"
943
- version = "1.13.2"
948
+ version = "1.15.0"
944
949
  source = "registry+https://github.com/rust-lang/crates.io-index"
945
- checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
950
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
946
951
 
947
952
  [[package]]
948
953
  name = "strsim"
@@ -969,9 +974,9 @@ dependencies = [
969
974
 
970
975
  [[package]]
971
976
  name = "syn"
972
- version = "2.0.77"
977
+ version = "2.0.101"
973
978
  source = "registry+https://github.com/rust-lang/crates.io-index"
974
- checksum = "9f35bcdf61fd8e7be6caf75f429fdca8beb3ed76584befb503b1569faee373ed"
979
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
975
980
  dependencies = [
976
981
  "proc-macro2",
977
982
  "quote",
@@ -1005,15 +1010,15 @@ dependencies = [
1005
1010
 
1006
1011
  [[package]]
1007
1012
  name = "termtree"
1008
- version = "0.4.1"
1013
+ version = "0.5.1"
1009
1014
  source = "registry+https://github.com/rust-lang/crates.io-index"
1010
- checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
1015
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1011
1016
 
1012
1017
  [[package]]
1013
1018
  name = "toml"
1014
- version = "0.8.19"
1019
+ version = "0.8.22"
1015
1020
  source = "registry+https://github.com/rust-lang/crates.io-index"
1016
- checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
1021
+ checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
1017
1022
  dependencies = [
1018
1023
  "serde",
1019
1024
  "serde_spanned",
@@ -1023,26 +1028,33 @@ dependencies = [
1023
1028
 
1024
1029
  [[package]]
1025
1030
  name = "toml_datetime"
1026
- version = "0.6.8"
1031
+ version = "0.6.9"
1027
1032
  source = "registry+https://github.com/rust-lang/crates.io-index"
1028
- checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
1033
+ checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
1029
1034
  dependencies = [
1030
1035
  "serde",
1031
1036
  ]
1032
1037
 
1033
1038
  [[package]]
1034
1039
  name = "toml_edit"
1035
- version = "0.22.20"
1040
+ version = "0.22.26"
1036
1041
  source = "registry+https://github.com/rust-lang/crates.io-index"
1037
- checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d"
1042
+ checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
1038
1043
  dependencies = [
1039
1044
  "indexmap",
1040
1045
  "serde",
1041
1046
  "serde_spanned",
1042
1047
  "toml_datetime",
1048
+ "toml_write",
1043
1049
  "winnow",
1044
1050
  ]
1045
1051
 
1052
+ [[package]]
1053
+ name = "toml_write"
1054
+ version = "0.1.1"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
1057
+
1046
1058
  [[package]]
1047
1059
  name = "tree-sitter"
1048
1060
  version = "0.20.10"
@@ -1125,7 +1137,7 @@ dependencies = [
1125
1137
  [[package]]
1126
1138
  name = "tree-sitter-strings"
1127
1139
  version = "0.1.0"
1128
- source = "git+https://github.com/uber/tree-sitter-strings.git#8069e5b6695059157a24445f9ff7917c9a0092ed"
1140
+ source = "git+https://github.com/uber/tree-sitter-strings.git#e368aceffde903b68f2ee84607967e5619a633aa"
1129
1141
  dependencies = [
1130
1142
  "cc",
1131
1143
  "tree-sitter",
@@ -1181,15 +1193,15 @@ dependencies = [
1181
1193
 
1182
1194
  [[package]]
1183
1195
  name = "unicode-ident"
1184
- version = "1.0.12"
1196
+ version = "1.0.18"
1185
1197
  source = "registry+https://github.com/rust-lang/crates.io-index"
1186
- checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
1198
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1187
1199
 
1188
1200
  [[package]]
1189
1201
  name = "unindent"
1190
- version = "0.2.3"
1202
+ version = "0.2.4"
1191
1203
  source = "registry+https://github.com/rust-lang/crates.io-index"
1192
- checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
1204
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1193
1205
 
1194
1206
  [[package]]
1195
1207
  name = "utf8parse"
@@ -1197,17 +1209,11 @@ version = "0.2.2"
1197
1209
  source = "registry+https://github.com/rust-lang/crates.io-index"
1198
1210
  checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1199
1211
 
1200
- [[package]]
1201
- name = "version_check"
1202
- version = "0.9.5"
1203
- source = "registry+https://github.com/rust-lang/crates.io-index"
1204
- checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1205
-
1206
1212
  [[package]]
1207
1213
  name = "wait-timeout"
1208
- version = "0.2.0"
1214
+ version = "0.2.1"
1209
1215
  source = "registry+https://github.com/rust-lang/crates.io-index"
1210
- checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
1216
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1211
1217
  dependencies = [
1212
1218
  "libc",
1213
1219
  ]
@@ -1234,7 +1240,7 @@ version = "0.1.9"
1234
1240
  source = "registry+https://github.com/rust-lang/crates.io-index"
1235
1241
  checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
1236
1242
  dependencies = [
1237
- "windows-sys 0.59.0",
1243
+ "windows-sys",
1238
1244
  ]
1239
1245
 
1240
1246
  [[package]]
@@ -1243,46 +1249,13 @@ version = "0.4.0"
1243
1249
  source = "registry+https://github.com/rust-lang/crates.io-index"
1244
1250
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1245
1251
 
1246
- [[package]]
1247
- name = "windows-sys"
1248
- version = "0.48.0"
1249
- source = "registry+https://github.com/rust-lang/crates.io-index"
1250
- checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1251
- dependencies = [
1252
- "windows-targets 0.48.5",
1253
- ]
1254
-
1255
- [[package]]
1256
- name = "windows-sys"
1257
- version = "0.52.0"
1258
- source = "registry+https://github.com/rust-lang/crates.io-index"
1259
- checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1260
- dependencies = [
1261
- "windows-targets 0.52.6",
1262
- ]
1263
-
1264
1252
  [[package]]
1265
1253
  name = "windows-sys"
1266
1254
  version = "0.59.0"
1267
1255
  source = "registry+https://github.com/rust-lang/crates.io-index"
1268
1256
  checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1269
1257
  dependencies = [
1270
- "windows-targets 0.52.6",
1271
- ]
1272
-
1273
- [[package]]
1274
- name = "windows-targets"
1275
- version = "0.48.5"
1276
- source = "registry+https://github.com/rust-lang/crates.io-index"
1277
- checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1278
- dependencies = [
1279
- "windows_aarch64_gnullvm 0.48.5",
1280
- "windows_aarch64_msvc 0.48.5",
1281
- "windows_i686_gnu 0.48.5",
1282
- "windows_i686_msvc 0.48.5",
1283
- "windows_x86_64_gnu 0.48.5",
1284
- "windows_x86_64_gnullvm 0.48.5",
1285
- "windows_x86_64_msvc 0.48.5",
1258
+ "windows-targets",
1286
1259
  ]
1287
1260
 
1288
1261
  [[package]]
@@ -1291,46 +1264,28 @@ version = "0.52.6"
1291
1264
  source = "registry+https://github.com/rust-lang/crates.io-index"
1292
1265
  checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1293
1266
  dependencies = [
1294
- "windows_aarch64_gnullvm 0.52.6",
1295
- "windows_aarch64_msvc 0.52.6",
1296
- "windows_i686_gnu 0.52.6",
1267
+ "windows_aarch64_gnullvm",
1268
+ "windows_aarch64_msvc",
1269
+ "windows_i686_gnu",
1297
1270
  "windows_i686_gnullvm",
1298
- "windows_i686_msvc 0.52.6",
1299
- "windows_x86_64_gnu 0.52.6",
1300
- "windows_x86_64_gnullvm 0.52.6",
1301
- "windows_x86_64_msvc 0.52.6",
1271
+ "windows_i686_msvc",
1272
+ "windows_x86_64_gnu",
1273
+ "windows_x86_64_gnullvm",
1274
+ "windows_x86_64_msvc",
1302
1275
  ]
1303
1276
 
1304
- [[package]]
1305
- name = "windows_aarch64_gnullvm"
1306
- version = "0.48.5"
1307
- source = "registry+https://github.com/rust-lang/crates.io-index"
1308
- checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1309
-
1310
1277
  [[package]]
1311
1278
  name = "windows_aarch64_gnullvm"
1312
1279
  version = "0.52.6"
1313
1280
  source = "registry+https://github.com/rust-lang/crates.io-index"
1314
1281
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1315
1282
 
1316
- [[package]]
1317
- name = "windows_aarch64_msvc"
1318
- version = "0.48.5"
1319
- source = "registry+https://github.com/rust-lang/crates.io-index"
1320
- checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1321
-
1322
1283
  [[package]]
1323
1284
  name = "windows_aarch64_msvc"
1324
1285
  version = "0.52.6"
1325
1286
  source = "registry+https://github.com/rust-lang/crates.io-index"
1326
1287
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1327
1288
 
1328
- [[package]]
1329
- name = "windows_i686_gnu"
1330
- version = "0.48.5"
1331
- source = "registry+https://github.com/rust-lang/crates.io-index"
1332
- checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1333
-
1334
1289
  [[package]]
1335
1290
  name = "windows_i686_gnu"
1336
1291
  version = "0.52.6"
@@ -1343,48 +1298,24 @@ version = "0.52.6"
1343
1298
  source = "registry+https://github.com/rust-lang/crates.io-index"
1344
1299
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1345
1300
 
1346
- [[package]]
1347
- name = "windows_i686_msvc"
1348
- version = "0.48.5"
1349
- source = "registry+https://github.com/rust-lang/crates.io-index"
1350
- checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1351
-
1352
1301
  [[package]]
1353
1302
  name = "windows_i686_msvc"
1354
1303
  version = "0.52.6"
1355
1304
  source = "registry+https://github.com/rust-lang/crates.io-index"
1356
1305
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1357
1306
 
1358
- [[package]]
1359
- name = "windows_x86_64_gnu"
1360
- version = "0.48.5"
1361
- source = "registry+https://github.com/rust-lang/crates.io-index"
1362
- checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1363
-
1364
1307
  [[package]]
1365
1308
  name = "windows_x86_64_gnu"
1366
1309
  version = "0.52.6"
1367
1310
  source = "registry+https://github.com/rust-lang/crates.io-index"
1368
1311
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1369
1312
 
1370
- [[package]]
1371
- name = "windows_x86_64_gnullvm"
1372
- version = "0.48.5"
1373
- source = "registry+https://github.com/rust-lang/crates.io-index"
1374
- checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1375
-
1376
1313
  [[package]]
1377
1314
  name = "windows_x86_64_gnullvm"
1378
1315
  version = "0.52.6"
1379
1316
  source = "registry+https://github.com/rust-lang/crates.io-index"
1380
1317
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1381
1318
 
1382
- [[package]]
1383
- name = "windows_x86_64_msvc"
1384
- version = "0.48.5"
1385
- source = "registry+https://github.com/rust-lang/crates.io-index"
1386
- checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1387
-
1388
1319
  [[package]]
1389
1320
  name = "windows_x86_64_msvc"
1390
1321
  version = "0.52.6"
@@ -1393,9 +1324,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1393
1324
 
1394
1325
  [[package]]
1395
1326
  name = "winnow"
1396
- version = "0.6.18"
1327
+ version = "0.7.10"
1397
1328
  source = "registry+https://github.com/rust-lang/crates.io-index"
1398
- checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f"
1329
+ checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
1399
1330
  dependencies = [
1400
1331
  "memchr",
1401
1332
  ]