optify-config 1.4.2 → 1.4.3
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.
- checksums.yaml +4 -4
- data/ext/optify_ruby/src/lib.rs +14 -14
- metadata +1 -2
- data/ext/optify_ruby/Cargo.lock +0 -917
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 583a185f0dce10e824c2e546c3548dd4f7e4da142120e5d08f6f35c9dc629953
|
4
|
+
data.tar.gz: 49ba3817f39aaff671bb6bc7611664285a1ea8b997eedc772083f9d1550a321a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61bcd97052b8c1cec5179729ebad85154b7ad5ed1c3da666edfcb536ce535c5d7481d22b8a846b4ae881cfb961aae082b9cebacc15b964dbd8641a3b88a6556d
|
7
|
+
data.tar.gz: 285d7ee1ea2951d8a62e899e1552dc31d3bbf7fc7f63a983fac02a69bc11c3d58dc27b80010f1271b5904ac748fa37c6f9b8038b742f06fff6e3d56aa68ac4e8
|
data/ext/optify_ruby/src/lib.rs
CHANGED
@@ -69,7 +69,7 @@ impl WrappedOptionsProvider {
|
|
69
69
|
.get_all_options(&features, &None, &_preferences)
|
70
70
|
{
|
71
71
|
Ok(options) => Ok(options.to_string()),
|
72
|
-
Err(e) => Err(magnus::Error::new(ruby.
|
72
|
+
Err(e) => Err(magnus::Error::new(ruby.exception_runtime_error(), e)),
|
73
73
|
}
|
74
74
|
}
|
75
75
|
|
@@ -82,7 +82,7 @@ impl WrappedOptionsProvider {
|
|
82
82
|
.0
|
83
83
|
.borrow()
|
84
84
|
.get_canonical_feature_name(&feature_name)
|
85
|
-
.map_err(|e| magnus::Error::new(ruby.
|
85
|
+
.map_err(|e| magnus::Error::new(ruby.exception_arg_error(), e))
|
86
86
|
}
|
87
87
|
|
88
88
|
fn get_canonical_feature_names(
|
@@ -95,7 +95,7 @@ impl WrappedOptionsProvider {
|
|
95
95
|
.0
|
96
96
|
.borrow()
|
97
97
|
.get_canonical_feature_names(&features)
|
98
|
-
.map_err(|e| magnus::Error::new(ruby.
|
98
|
+
.map_err(|e| magnus::Error::new(ruby.exception_arg_error(), e))
|
99
99
|
}
|
100
100
|
|
101
101
|
fn get_feature_metadata_json(&self, canonical_feature_name: String) -> Option<String> {
|
@@ -128,7 +128,7 @@ impl WrappedOptionsProvider {
|
|
128
128
|
.get_options_with_preferences(&key, &features, &None, &None)
|
129
129
|
{
|
130
130
|
Ok(options) => Ok(options.to_string()),
|
131
|
-
Err(e) => Err(magnus::Error::new(ruby.
|
131
|
+
Err(e) => Err(magnus::Error::new(ruby.exception_runtime_error(), e)),
|
132
132
|
}
|
133
133
|
}
|
134
134
|
|
@@ -147,7 +147,7 @@ impl WrappedOptionsProvider {
|
|
147
147
|
.get_options_with_preferences(&key, &features, &None, &_preferences)
|
148
148
|
{
|
149
149
|
Ok(options) => Ok(options.to_string()),
|
150
|
-
Err(e) => Err(magnus::Error::new(ruby.
|
150
|
+
Err(e) => Err(magnus::Error::new(ruby.exception_runtime_error(), e)),
|
151
151
|
}
|
152
152
|
}
|
153
153
|
}
|
@@ -176,14 +176,14 @@ impl WrappedOptionsProviderBuilder {
|
|
176
176
|
let path = std::path::Path::new(&directory);
|
177
177
|
match rb_self.0.borrow_mut().add_directory(path) {
|
178
178
|
Ok(builder) => Ok(WrappedOptionsProviderBuilder(RefCell::new(builder.clone()))),
|
179
|
-
Err(e) => Err(magnus::Error::new(ruby.
|
179
|
+
Err(e) => Err(magnus::Error::new(ruby.exception_arg_error(), e)),
|
180
180
|
}
|
181
181
|
}
|
182
182
|
|
183
183
|
fn build(ruby: &Ruby, rb_self: &Self) -> Result<WrappedOptionsProvider, magnus::Error> {
|
184
184
|
match rb_self.0.borrow_mut().build() {
|
185
185
|
Ok(provider) => Ok(WrappedOptionsProvider(RefCell::new(provider))),
|
186
|
-
Err(e) => Err(magnus::Error::new(ruby.
|
186
|
+
Err(e) => Err(magnus::Error::new(ruby.exception_runtime_error(), e)),
|
187
187
|
}
|
188
188
|
}
|
189
189
|
}
|
@@ -206,7 +206,7 @@ impl WrappedOptionsWatcher {
|
|
206
206
|
.get_all_options(&features, &None, &_preferences)
|
207
207
|
{
|
208
208
|
Ok(options) => Ok(options.to_string()),
|
209
|
-
Err(e) => Err(magnus::Error::new(ruby.
|
209
|
+
Err(e) => Err(magnus::Error::new(ruby.exception_runtime_error(), e)),
|
210
210
|
}
|
211
211
|
}
|
212
212
|
|
@@ -219,7 +219,7 @@ impl WrappedOptionsWatcher {
|
|
219
219
|
.0
|
220
220
|
.borrow()
|
221
221
|
.get_canonical_feature_name(&feature_name)
|
222
|
-
.map_err(|e| magnus::Error::new(ruby.
|
222
|
+
.map_err(|e| magnus::Error::new(ruby.exception_arg_error(), e))
|
223
223
|
}
|
224
224
|
|
225
225
|
fn get_canonical_feature_names(
|
@@ -232,7 +232,7 @@ impl WrappedOptionsWatcher {
|
|
232
232
|
.0
|
233
233
|
.borrow()
|
234
234
|
.get_canonical_feature_names(&features)
|
235
|
-
.map_err(|e| magnus::Error::new(ruby.
|
235
|
+
.map_err(|e| magnus::Error::new(ruby.exception_arg_error(), e))
|
236
236
|
}
|
237
237
|
|
238
238
|
fn get_feature_metadata_json(&self, canonical_feature_name: String) -> Option<String> {
|
@@ -263,7 +263,7 @@ impl WrappedOptionsWatcher {
|
|
263
263
|
.get_options_with_preferences(&key, &features, &None, &None)
|
264
264
|
{
|
265
265
|
Ok(options) => Ok(options.to_string()),
|
266
|
-
Err(e) => Err(magnus::Error::new(ruby.
|
266
|
+
Err(e) => Err(magnus::Error::new(ruby.exception_runtime_error(), e)),
|
267
267
|
}
|
268
268
|
}
|
269
269
|
|
@@ -282,7 +282,7 @@ impl WrappedOptionsWatcher {
|
|
282
282
|
.get_options_with_preferences(&key, &features, &None, &_preferences)
|
283
283
|
{
|
284
284
|
Ok(options) => Ok(options.to_string()),
|
285
|
-
Err(e) => Err(magnus::Error::new(ruby.
|
285
|
+
Err(e) => Err(magnus::Error::new(ruby.exception_runtime_error(), e)),
|
286
286
|
}
|
287
287
|
}
|
288
288
|
|
@@ -308,14 +308,14 @@ impl WrappedOptionsWatcherBuilder {
|
|
308
308
|
let path = std::path::Path::new(&directory);
|
309
309
|
match rb_self.0.borrow_mut().add_directory(path) {
|
310
310
|
Ok(builder) => Ok(WrappedOptionsWatcherBuilder(RefCell::new(builder.clone()))),
|
311
|
-
Err(e) => Err(magnus::Error::new(ruby.
|
311
|
+
Err(e) => Err(magnus::Error::new(ruby.exception_arg_error(), e)),
|
312
312
|
}
|
313
313
|
}
|
314
314
|
|
315
315
|
fn build(ruby: &Ruby, rb_self: &Self) -> Result<WrappedOptionsWatcher, magnus::Error> {
|
316
316
|
match rb_self.0.borrow_mut().build() {
|
317
317
|
Ok(provider) => Ok(WrappedOptionsWatcher(RefCell::new(provider))),
|
318
|
-
Err(e) => Err(magnus::Error::new(ruby.
|
318
|
+
Err(e) => Err(magnus::Error::new(ruby.exception_runtime_error(), e)),
|
319
319
|
}
|
320
320
|
}
|
321
321
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: optify-config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin D. Harris
|
@@ -115,7 +115,6 @@ extensions:
|
|
115
115
|
- ext/optify_ruby/extconf.rb
|
116
116
|
extra_rdoc_files: []
|
117
117
|
files:
|
118
|
-
- ext/optify_ruby/Cargo.lock
|
119
118
|
- ext/optify_ruby/Cargo.toml
|
120
119
|
- ext/optify_ruby/extconf.rb
|
121
120
|
- ext/optify_ruby/src/lib.rs
|
data/ext/optify_ruby/Cargo.lock
DELETED
@@ -1,917 +0,0 @@
|
|
1
|
-
# This file is automatically @generated by Cargo.
|
2
|
-
# It is not intended for manual editing.
|
3
|
-
version = 4
|
4
|
-
|
5
|
-
[[package]]
|
6
|
-
name = "ahash"
|
7
|
-
version = "0.8.11"
|
8
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
10
|
-
dependencies = [
|
11
|
-
"cfg-if",
|
12
|
-
"once_cell",
|
13
|
-
"version_check",
|
14
|
-
"zerocopy",
|
15
|
-
]
|
16
|
-
|
17
|
-
[[package]]
|
18
|
-
name = "aho-corasick"
|
19
|
-
version = "1.1.3"
|
20
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
21
|
-
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
22
|
-
dependencies = [
|
23
|
-
"memchr",
|
24
|
-
]
|
25
|
-
|
26
|
-
[[package]]
|
27
|
-
name = "arraydeque"
|
28
|
-
version = "0.5.1"
|
29
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
-
checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
|
31
|
-
|
32
|
-
[[package]]
|
33
|
-
name = "async-trait"
|
34
|
-
version = "0.1.85"
|
35
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
36
|
-
checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056"
|
37
|
-
dependencies = [
|
38
|
-
"proc-macro2",
|
39
|
-
"quote",
|
40
|
-
"syn",
|
41
|
-
]
|
42
|
-
|
43
|
-
[[package]]
|
44
|
-
name = "base64"
|
45
|
-
version = "0.21.7"
|
46
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
47
|
-
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
48
|
-
|
49
|
-
[[package]]
|
50
|
-
name = "bindgen"
|
51
|
-
version = "0.69.5"
|
52
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
53
|
-
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
54
|
-
dependencies = [
|
55
|
-
"bitflags",
|
56
|
-
"cexpr",
|
57
|
-
"clang-sys",
|
58
|
-
"itertools",
|
59
|
-
"lazy_static",
|
60
|
-
"lazycell",
|
61
|
-
"proc-macro2",
|
62
|
-
"quote",
|
63
|
-
"regex",
|
64
|
-
"rustc-hash",
|
65
|
-
"shlex",
|
66
|
-
"syn",
|
67
|
-
]
|
68
|
-
|
69
|
-
[[package]]
|
70
|
-
name = "bitflags"
|
71
|
-
version = "2.8.0"
|
72
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
73
|
-
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
|
74
|
-
dependencies = [
|
75
|
-
"serde",
|
76
|
-
]
|
77
|
-
|
78
|
-
[[package]]
|
79
|
-
name = "block-buffer"
|
80
|
-
version = "0.10.4"
|
81
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
82
|
-
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
83
|
-
dependencies = [
|
84
|
-
"generic-array",
|
85
|
-
]
|
86
|
-
|
87
|
-
[[package]]
|
88
|
-
name = "cexpr"
|
89
|
-
version = "0.6.0"
|
90
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
91
|
-
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
92
|
-
dependencies = [
|
93
|
-
"nom",
|
94
|
-
]
|
95
|
-
|
96
|
-
[[package]]
|
97
|
-
name = "cfg-if"
|
98
|
-
version = "1.0.0"
|
99
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
100
|
-
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
101
|
-
|
102
|
-
[[package]]
|
103
|
-
name = "clang-sys"
|
104
|
-
version = "1.8.1"
|
105
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
106
|
-
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
107
|
-
dependencies = [
|
108
|
-
"glob",
|
109
|
-
"libc",
|
110
|
-
"libloading",
|
111
|
-
]
|
112
|
-
|
113
|
-
[[package]]
|
114
|
-
name = "config"
|
115
|
-
version = "0.15.7"
|
116
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
117
|
-
checksum = "e26695492a475c4a091cfda61446d5ba01aac2e1dfbcd27a12fdd11aa2e32596"
|
118
|
-
dependencies = [
|
119
|
-
"async-trait",
|
120
|
-
"convert_case",
|
121
|
-
"json5",
|
122
|
-
"pathdiff",
|
123
|
-
"ron",
|
124
|
-
"rust-ini",
|
125
|
-
"serde",
|
126
|
-
"serde_json",
|
127
|
-
"toml",
|
128
|
-
"winnow",
|
129
|
-
"yaml-rust2",
|
130
|
-
]
|
131
|
-
|
132
|
-
[[package]]
|
133
|
-
name = "const-random"
|
134
|
-
version = "0.1.18"
|
135
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
136
|
-
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
137
|
-
dependencies = [
|
138
|
-
"const-random-macro",
|
139
|
-
]
|
140
|
-
|
141
|
-
[[package]]
|
142
|
-
name = "const-random-macro"
|
143
|
-
version = "0.1.16"
|
144
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
145
|
-
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
146
|
-
dependencies = [
|
147
|
-
"getrandom",
|
148
|
-
"once_cell",
|
149
|
-
"tiny-keccak",
|
150
|
-
]
|
151
|
-
|
152
|
-
[[package]]
|
153
|
-
name = "convert_case"
|
154
|
-
version = "0.6.0"
|
155
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
156
|
-
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
157
|
-
dependencies = [
|
158
|
-
"unicode-segmentation",
|
159
|
-
]
|
160
|
-
|
161
|
-
[[package]]
|
162
|
-
name = "cpufeatures"
|
163
|
-
version = "0.2.17"
|
164
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
165
|
-
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
166
|
-
dependencies = [
|
167
|
-
"libc",
|
168
|
-
]
|
169
|
-
|
170
|
-
[[package]]
|
171
|
-
name = "crunchy"
|
172
|
-
version = "0.2.3"
|
173
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
174
|
-
checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
|
175
|
-
|
176
|
-
[[package]]
|
177
|
-
name = "crypto-common"
|
178
|
-
version = "0.1.6"
|
179
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
180
|
-
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
181
|
-
dependencies = [
|
182
|
-
"generic-array",
|
183
|
-
"typenum",
|
184
|
-
]
|
185
|
-
|
186
|
-
[[package]]
|
187
|
-
name = "digest"
|
188
|
-
version = "0.10.7"
|
189
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
190
|
-
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
191
|
-
dependencies = [
|
192
|
-
"block-buffer",
|
193
|
-
"crypto-common",
|
194
|
-
]
|
195
|
-
|
196
|
-
[[package]]
|
197
|
-
name = "dlv-list"
|
198
|
-
version = "0.5.2"
|
199
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
200
|
-
checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f"
|
201
|
-
dependencies = [
|
202
|
-
"const-random",
|
203
|
-
]
|
204
|
-
|
205
|
-
[[package]]
|
206
|
-
name = "either"
|
207
|
-
version = "1.13.0"
|
208
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
209
|
-
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
210
|
-
|
211
|
-
[[package]]
|
212
|
-
name = "encoding_rs"
|
213
|
-
version = "0.8.35"
|
214
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
215
|
-
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
216
|
-
dependencies = [
|
217
|
-
"cfg-if",
|
218
|
-
]
|
219
|
-
|
220
|
-
[[package]]
|
221
|
-
name = "equivalent"
|
222
|
-
version = "1.0.1"
|
223
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
224
|
-
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
225
|
-
|
226
|
-
[[package]]
|
227
|
-
name = "generic-array"
|
228
|
-
version = "0.14.7"
|
229
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
230
|
-
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
231
|
-
dependencies = [
|
232
|
-
"typenum",
|
233
|
-
"version_check",
|
234
|
-
]
|
235
|
-
|
236
|
-
[[package]]
|
237
|
-
name = "getrandom"
|
238
|
-
version = "0.2.15"
|
239
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
240
|
-
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
241
|
-
dependencies = [
|
242
|
-
"cfg-if",
|
243
|
-
"libc",
|
244
|
-
"wasi",
|
245
|
-
]
|
246
|
-
|
247
|
-
[[package]]
|
248
|
-
name = "glob"
|
249
|
-
version = "0.3.2"
|
250
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
251
|
-
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
252
|
-
|
253
|
-
[[package]]
|
254
|
-
name = "hashbrown"
|
255
|
-
version = "0.14.5"
|
256
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
257
|
-
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
258
|
-
dependencies = [
|
259
|
-
"ahash",
|
260
|
-
]
|
261
|
-
|
262
|
-
[[package]]
|
263
|
-
name = "hashbrown"
|
264
|
-
version = "0.15.2"
|
265
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
266
|
-
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
267
|
-
|
268
|
-
[[package]]
|
269
|
-
name = "hashlink"
|
270
|
-
version = "0.9.1"
|
271
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
272
|
-
checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
|
273
|
-
dependencies = [
|
274
|
-
"hashbrown 0.14.5",
|
275
|
-
]
|
276
|
-
|
277
|
-
[[package]]
|
278
|
-
name = "indexmap"
|
279
|
-
version = "2.7.1"
|
280
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
281
|
-
checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
|
282
|
-
dependencies = [
|
283
|
-
"equivalent",
|
284
|
-
"hashbrown 0.15.2",
|
285
|
-
]
|
286
|
-
|
287
|
-
[[package]]
|
288
|
-
name = "itertools"
|
289
|
-
version = "0.12.1"
|
290
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
291
|
-
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
292
|
-
dependencies = [
|
293
|
-
"either",
|
294
|
-
]
|
295
|
-
|
296
|
-
[[package]]
|
297
|
-
name = "itoa"
|
298
|
-
version = "1.0.14"
|
299
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
300
|
-
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
301
|
-
|
302
|
-
[[package]]
|
303
|
-
name = "json5"
|
304
|
-
version = "0.4.1"
|
305
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
306
|
-
checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
|
307
|
-
dependencies = [
|
308
|
-
"pest",
|
309
|
-
"pest_derive",
|
310
|
-
"serde",
|
311
|
-
]
|
312
|
-
|
313
|
-
[[package]]
|
314
|
-
name = "lazy_static"
|
315
|
-
version = "1.5.0"
|
316
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
317
|
-
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
318
|
-
|
319
|
-
[[package]]
|
320
|
-
name = "lazycell"
|
321
|
-
version = "1.3.0"
|
322
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
323
|
-
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
324
|
-
|
325
|
-
[[package]]
|
326
|
-
name = "libc"
|
327
|
-
version = "0.2.169"
|
328
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
329
|
-
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
330
|
-
|
331
|
-
[[package]]
|
332
|
-
name = "libloading"
|
333
|
-
version = "0.8.6"
|
334
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
335
|
-
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
336
|
-
dependencies = [
|
337
|
-
"cfg-if",
|
338
|
-
"windows-targets",
|
339
|
-
]
|
340
|
-
|
341
|
-
[[package]]
|
342
|
-
name = "magnus"
|
343
|
-
version = "0.7.1"
|
344
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
345
|
-
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
346
|
-
dependencies = [
|
347
|
-
"magnus-macros",
|
348
|
-
"rb-sys",
|
349
|
-
"rb-sys-env",
|
350
|
-
"seq-macro",
|
351
|
-
]
|
352
|
-
|
353
|
-
[[package]]
|
354
|
-
name = "magnus-macros"
|
355
|
-
version = "0.6.0"
|
356
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
357
|
-
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
358
|
-
dependencies = [
|
359
|
-
"proc-macro2",
|
360
|
-
"quote",
|
361
|
-
"syn",
|
362
|
-
]
|
363
|
-
|
364
|
-
[[package]]
|
365
|
-
name = "memchr"
|
366
|
-
version = "2.7.4"
|
367
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
368
|
-
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
369
|
-
|
370
|
-
[[package]]
|
371
|
-
name = "minimal-lexical"
|
372
|
-
version = "0.2.1"
|
373
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
374
|
-
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
375
|
-
|
376
|
-
[[package]]
|
377
|
-
name = "nom"
|
378
|
-
version = "7.1.3"
|
379
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
380
|
-
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
381
|
-
dependencies = [
|
382
|
-
"memchr",
|
383
|
-
"minimal-lexical",
|
384
|
-
]
|
385
|
-
|
386
|
-
[[package]]
|
387
|
-
name = "once_cell"
|
388
|
-
version = "1.20.2"
|
389
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
390
|
-
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
391
|
-
|
392
|
-
[[package]]
|
393
|
-
name = "optify"
|
394
|
-
version = "0.2.0"
|
395
|
-
dependencies = [
|
396
|
-
"config",
|
397
|
-
"serde",
|
398
|
-
"serde_derive",
|
399
|
-
"serde_json",
|
400
|
-
"unicase",
|
401
|
-
"walkdir",
|
402
|
-
]
|
403
|
-
|
404
|
-
[[package]]
|
405
|
-
name = "optify_ruby"
|
406
|
-
version = "0.2.0"
|
407
|
-
dependencies = [
|
408
|
-
"magnus",
|
409
|
-
"optify",
|
410
|
-
"rb-sys",
|
411
|
-
]
|
412
|
-
|
413
|
-
[[package]]
|
414
|
-
name = "ordered-multimap"
|
415
|
-
version = "0.7.3"
|
416
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
417
|
-
checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79"
|
418
|
-
dependencies = [
|
419
|
-
"dlv-list",
|
420
|
-
"hashbrown 0.14.5",
|
421
|
-
]
|
422
|
-
|
423
|
-
[[package]]
|
424
|
-
name = "pathdiff"
|
425
|
-
version = "0.2.3"
|
426
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
427
|
-
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
|
428
|
-
|
429
|
-
[[package]]
|
430
|
-
name = "pest"
|
431
|
-
version = "2.7.15"
|
432
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
433
|
-
checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
|
434
|
-
dependencies = [
|
435
|
-
"memchr",
|
436
|
-
"thiserror",
|
437
|
-
"ucd-trie",
|
438
|
-
]
|
439
|
-
|
440
|
-
[[package]]
|
441
|
-
name = "pest_derive"
|
442
|
-
version = "2.7.15"
|
443
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
444
|
-
checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e"
|
445
|
-
dependencies = [
|
446
|
-
"pest",
|
447
|
-
"pest_generator",
|
448
|
-
]
|
449
|
-
|
450
|
-
[[package]]
|
451
|
-
name = "pest_generator"
|
452
|
-
version = "2.7.15"
|
453
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
454
|
-
checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b"
|
455
|
-
dependencies = [
|
456
|
-
"pest",
|
457
|
-
"pest_meta",
|
458
|
-
"proc-macro2",
|
459
|
-
"quote",
|
460
|
-
"syn",
|
461
|
-
]
|
462
|
-
|
463
|
-
[[package]]
|
464
|
-
name = "pest_meta"
|
465
|
-
version = "2.7.15"
|
466
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
467
|
-
checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea"
|
468
|
-
dependencies = [
|
469
|
-
"once_cell",
|
470
|
-
"pest",
|
471
|
-
"sha2",
|
472
|
-
]
|
473
|
-
|
474
|
-
[[package]]
|
475
|
-
name = "proc-macro2"
|
476
|
-
version = "1.0.93"
|
477
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
478
|
-
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
479
|
-
dependencies = [
|
480
|
-
"unicode-ident",
|
481
|
-
]
|
482
|
-
|
483
|
-
[[package]]
|
484
|
-
name = "quote"
|
485
|
-
version = "1.0.38"
|
486
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
487
|
-
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
488
|
-
dependencies = [
|
489
|
-
"proc-macro2",
|
490
|
-
]
|
491
|
-
|
492
|
-
[[package]]
|
493
|
-
name = "rb-sys"
|
494
|
-
version = "0.9.109"
|
495
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
496
|
-
checksum = "6cfdfe3935ea21d9d3b0251f3258ff8773d9525bc422e27847ca4c567214f0b0"
|
497
|
-
dependencies = [
|
498
|
-
"rb-sys-build",
|
499
|
-
]
|
500
|
-
|
501
|
-
[[package]]
|
502
|
-
name = "rb-sys-build"
|
503
|
-
version = "0.9.109"
|
504
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
505
|
-
checksum = "23dd2fa891aed8ff298d6ee0301e4c704a5bf469fbc9e9a46d7c1af26f020ad1"
|
506
|
-
dependencies = [
|
507
|
-
"bindgen",
|
508
|
-
"lazy_static",
|
509
|
-
"proc-macro2",
|
510
|
-
"quote",
|
511
|
-
"regex",
|
512
|
-
"shell-words",
|
513
|
-
"syn",
|
514
|
-
]
|
515
|
-
|
516
|
-
[[package]]
|
517
|
-
name = "rb-sys-env"
|
518
|
-
version = "0.1.2"
|
519
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
520
|
-
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
521
|
-
|
522
|
-
[[package]]
|
523
|
-
name = "regex"
|
524
|
-
version = "1.11.1"
|
525
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
526
|
-
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
527
|
-
dependencies = [
|
528
|
-
"aho-corasick",
|
529
|
-
"memchr",
|
530
|
-
"regex-automata",
|
531
|
-
"regex-syntax",
|
532
|
-
]
|
533
|
-
|
534
|
-
[[package]]
|
535
|
-
name = "regex-automata"
|
536
|
-
version = "0.4.9"
|
537
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
538
|
-
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
539
|
-
dependencies = [
|
540
|
-
"aho-corasick",
|
541
|
-
"memchr",
|
542
|
-
"regex-syntax",
|
543
|
-
]
|
544
|
-
|
545
|
-
[[package]]
|
546
|
-
name = "regex-syntax"
|
547
|
-
version = "0.8.5"
|
548
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
549
|
-
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
550
|
-
|
551
|
-
[[package]]
|
552
|
-
name = "ron"
|
553
|
-
version = "0.8.1"
|
554
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
555
|
-
checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94"
|
556
|
-
dependencies = [
|
557
|
-
"base64",
|
558
|
-
"bitflags",
|
559
|
-
"serde",
|
560
|
-
"serde_derive",
|
561
|
-
]
|
562
|
-
|
563
|
-
[[package]]
|
564
|
-
name = "rust-ini"
|
565
|
-
version = "0.21.1"
|
566
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
567
|
-
checksum = "4e310ef0e1b6eeb79169a1171daf9abcb87a2e17c03bee2c4bb100b55c75409f"
|
568
|
-
dependencies = [
|
569
|
-
"cfg-if",
|
570
|
-
"ordered-multimap",
|
571
|
-
"trim-in-place",
|
572
|
-
]
|
573
|
-
|
574
|
-
[[package]]
|
575
|
-
name = "rustc-hash"
|
576
|
-
version = "1.1.0"
|
577
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
578
|
-
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
579
|
-
|
580
|
-
[[package]]
|
581
|
-
name = "ryu"
|
582
|
-
version = "1.0.19"
|
583
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
584
|
-
checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
|
585
|
-
|
586
|
-
[[package]]
|
587
|
-
name = "same-file"
|
588
|
-
version = "1.0.6"
|
589
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
590
|
-
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
591
|
-
dependencies = [
|
592
|
-
"winapi-util",
|
593
|
-
]
|
594
|
-
|
595
|
-
[[package]]
|
596
|
-
name = "seq-macro"
|
597
|
-
version = "0.3.5"
|
598
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
599
|
-
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
600
|
-
|
601
|
-
[[package]]
|
602
|
-
name = "serde"
|
603
|
-
version = "1.0.217"
|
604
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
605
|
-
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
606
|
-
dependencies = [
|
607
|
-
"serde_derive",
|
608
|
-
]
|
609
|
-
|
610
|
-
[[package]]
|
611
|
-
name = "serde_derive"
|
612
|
-
version = "1.0.217"
|
613
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
614
|
-
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
615
|
-
dependencies = [
|
616
|
-
"proc-macro2",
|
617
|
-
"quote",
|
618
|
-
"syn",
|
619
|
-
]
|
620
|
-
|
621
|
-
[[package]]
|
622
|
-
name = "serde_json"
|
623
|
-
version = "1.0.138"
|
624
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
625
|
-
checksum = "d434192e7da787e94a6ea7e9670b26a036d0ca41e0b7efb2676dd32bae872949"
|
626
|
-
dependencies = [
|
627
|
-
"itoa",
|
628
|
-
"memchr",
|
629
|
-
"ryu",
|
630
|
-
"serde",
|
631
|
-
]
|
632
|
-
|
633
|
-
[[package]]
|
634
|
-
name = "serde_spanned"
|
635
|
-
version = "0.6.8"
|
636
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
637
|
-
checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
|
638
|
-
dependencies = [
|
639
|
-
"serde",
|
640
|
-
]
|
641
|
-
|
642
|
-
[[package]]
|
643
|
-
name = "sha2"
|
644
|
-
version = "0.10.8"
|
645
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
646
|
-
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
647
|
-
dependencies = [
|
648
|
-
"cfg-if",
|
649
|
-
"cpufeatures",
|
650
|
-
"digest",
|
651
|
-
]
|
652
|
-
|
653
|
-
[[package]]
|
654
|
-
name = "shell-words"
|
655
|
-
version = "1.1.0"
|
656
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
657
|
-
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
658
|
-
|
659
|
-
[[package]]
|
660
|
-
name = "shlex"
|
661
|
-
version = "1.3.0"
|
662
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
663
|
-
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
664
|
-
|
665
|
-
[[package]]
|
666
|
-
name = "syn"
|
667
|
-
version = "2.0.96"
|
668
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
669
|
-
checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
|
670
|
-
dependencies = [
|
671
|
-
"proc-macro2",
|
672
|
-
"quote",
|
673
|
-
"unicode-ident",
|
674
|
-
]
|
675
|
-
|
676
|
-
[[package]]
|
677
|
-
name = "thiserror"
|
678
|
-
version = "2.0.11"
|
679
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
680
|
-
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
|
681
|
-
dependencies = [
|
682
|
-
"thiserror-impl",
|
683
|
-
]
|
684
|
-
|
685
|
-
[[package]]
|
686
|
-
name = "thiserror-impl"
|
687
|
-
version = "2.0.11"
|
688
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
689
|
-
checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
|
690
|
-
dependencies = [
|
691
|
-
"proc-macro2",
|
692
|
-
"quote",
|
693
|
-
"syn",
|
694
|
-
]
|
695
|
-
|
696
|
-
[[package]]
|
697
|
-
name = "tiny-keccak"
|
698
|
-
version = "2.0.2"
|
699
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
700
|
-
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
701
|
-
dependencies = [
|
702
|
-
"crunchy",
|
703
|
-
]
|
704
|
-
|
705
|
-
[[package]]
|
706
|
-
name = "toml"
|
707
|
-
version = "0.8.19"
|
708
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
709
|
-
checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
|
710
|
-
dependencies = [
|
711
|
-
"serde",
|
712
|
-
"serde_spanned",
|
713
|
-
"toml_datetime",
|
714
|
-
"toml_edit",
|
715
|
-
]
|
716
|
-
|
717
|
-
[[package]]
|
718
|
-
name = "toml_datetime"
|
719
|
-
version = "0.6.8"
|
720
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
721
|
-
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
|
722
|
-
dependencies = [
|
723
|
-
"serde",
|
724
|
-
]
|
725
|
-
|
726
|
-
[[package]]
|
727
|
-
name = "toml_edit"
|
728
|
-
version = "0.22.23"
|
729
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
730
|
-
checksum = "02a8b472d1a3d7c18e2d61a489aee3453fd9031c33e4f55bd533f4a7adca1bee"
|
731
|
-
dependencies = [
|
732
|
-
"indexmap",
|
733
|
-
"serde",
|
734
|
-
"serde_spanned",
|
735
|
-
"toml_datetime",
|
736
|
-
"winnow",
|
737
|
-
]
|
738
|
-
|
739
|
-
[[package]]
|
740
|
-
name = "trim-in-place"
|
741
|
-
version = "0.1.7"
|
742
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
743
|
-
checksum = "343e926fc669bc8cde4fa3129ab681c63671bae288b1f1081ceee6d9d37904fc"
|
744
|
-
|
745
|
-
[[package]]
|
746
|
-
name = "typenum"
|
747
|
-
version = "1.17.0"
|
748
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
749
|
-
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
750
|
-
|
751
|
-
[[package]]
|
752
|
-
name = "ucd-trie"
|
753
|
-
version = "0.1.7"
|
754
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
755
|
-
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
756
|
-
|
757
|
-
[[package]]
|
758
|
-
name = "unicase"
|
759
|
-
version = "2.8.1"
|
760
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
761
|
-
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
762
|
-
|
763
|
-
[[package]]
|
764
|
-
name = "unicode-ident"
|
765
|
-
version = "1.0.16"
|
766
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
767
|
-
checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
|
768
|
-
|
769
|
-
[[package]]
|
770
|
-
name = "unicode-segmentation"
|
771
|
-
version = "1.12.0"
|
772
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
773
|
-
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
774
|
-
|
775
|
-
[[package]]
|
776
|
-
name = "version_check"
|
777
|
-
version = "0.9.5"
|
778
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
779
|
-
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
780
|
-
|
781
|
-
[[package]]
|
782
|
-
name = "walkdir"
|
783
|
-
version = "2.5.0"
|
784
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
785
|
-
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
786
|
-
dependencies = [
|
787
|
-
"same-file",
|
788
|
-
"winapi-util",
|
789
|
-
]
|
790
|
-
|
791
|
-
[[package]]
|
792
|
-
name = "wasi"
|
793
|
-
version = "0.11.0+wasi-snapshot-preview1"
|
794
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
795
|
-
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
796
|
-
|
797
|
-
[[package]]
|
798
|
-
name = "winapi-util"
|
799
|
-
version = "0.1.9"
|
800
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
801
|
-
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
802
|
-
dependencies = [
|
803
|
-
"windows-sys",
|
804
|
-
]
|
805
|
-
|
806
|
-
[[package]]
|
807
|
-
name = "windows-sys"
|
808
|
-
version = "0.59.0"
|
809
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
810
|
-
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
811
|
-
dependencies = [
|
812
|
-
"windows-targets",
|
813
|
-
]
|
814
|
-
|
815
|
-
[[package]]
|
816
|
-
name = "windows-targets"
|
817
|
-
version = "0.52.6"
|
818
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
819
|
-
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
820
|
-
dependencies = [
|
821
|
-
"windows_aarch64_gnullvm",
|
822
|
-
"windows_aarch64_msvc",
|
823
|
-
"windows_i686_gnu",
|
824
|
-
"windows_i686_gnullvm",
|
825
|
-
"windows_i686_msvc",
|
826
|
-
"windows_x86_64_gnu",
|
827
|
-
"windows_x86_64_gnullvm",
|
828
|
-
"windows_x86_64_msvc",
|
829
|
-
]
|
830
|
-
|
831
|
-
[[package]]
|
832
|
-
name = "windows_aarch64_gnullvm"
|
833
|
-
version = "0.52.6"
|
834
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
835
|
-
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
836
|
-
|
837
|
-
[[package]]
|
838
|
-
name = "windows_aarch64_msvc"
|
839
|
-
version = "0.52.6"
|
840
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
841
|
-
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
842
|
-
|
843
|
-
[[package]]
|
844
|
-
name = "windows_i686_gnu"
|
845
|
-
version = "0.52.6"
|
846
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
847
|
-
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
848
|
-
|
849
|
-
[[package]]
|
850
|
-
name = "windows_i686_gnullvm"
|
851
|
-
version = "0.52.6"
|
852
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
853
|
-
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
854
|
-
|
855
|
-
[[package]]
|
856
|
-
name = "windows_i686_msvc"
|
857
|
-
version = "0.52.6"
|
858
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
859
|
-
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
860
|
-
|
861
|
-
[[package]]
|
862
|
-
name = "windows_x86_64_gnu"
|
863
|
-
version = "0.52.6"
|
864
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
865
|
-
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
866
|
-
|
867
|
-
[[package]]
|
868
|
-
name = "windows_x86_64_gnullvm"
|
869
|
-
version = "0.52.6"
|
870
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
871
|
-
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
872
|
-
|
873
|
-
[[package]]
|
874
|
-
name = "windows_x86_64_msvc"
|
875
|
-
version = "0.52.6"
|
876
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
877
|
-
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
878
|
-
|
879
|
-
[[package]]
|
880
|
-
name = "winnow"
|
881
|
-
version = "0.7.0"
|
882
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
883
|
-
checksum = "7e49d2d35d3fad69b39b94139037ecfb4f359f08958b9c11e7315ce770462419"
|
884
|
-
dependencies = [
|
885
|
-
"memchr",
|
886
|
-
]
|
887
|
-
|
888
|
-
[[package]]
|
889
|
-
name = "yaml-rust2"
|
890
|
-
version = "0.9.0"
|
891
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
892
|
-
checksum = "2a1a1c0bc9823338a3bdf8c61f994f23ac004c6fa32c08cd152984499b445e8d"
|
893
|
-
dependencies = [
|
894
|
-
"arraydeque",
|
895
|
-
"encoding_rs",
|
896
|
-
"hashlink",
|
897
|
-
]
|
898
|
-
|
899
|
-
[[package]]
|
900
|
-
name = "zerocopy"
|
901
|
-
version = "0.7.35"
|
902
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
903
|
-
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
904
|
-
dependencies = [
|
905
|
-
"zerocopy-derive",
|
906
|
-
]
|
907
|
-
|
908
|
-
[[package]]
|
909
|
-
name = "zerocopy-derive"
|
910
|
-
version = "0.7.35"
|
911
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
912
|
-
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
913
|
-
dependencies = [
|
914
|
-
"proc-macro2",
|
915
|
-
"quote",
|
916
|
-
"syn",
|
917
|
-
]
|