cedar_policy 0.5.2 → 0.5.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/.cross_rubies +25 -20
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +7 -0
- data/Cargo.lock +272 -184
- data/ext/cedar_policy/Cargo.toml +4 -4
- data/lib/cedar_policy/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 51733ff95cea956fcc861630c5119175abfc339e7907bfc5861b2f0d2cc09540
|
4
|
+
data.tar.gz: 3331fc83a28eb413320865a1a78c1df9ed366094f772218d0e1733275d483666
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 219b8f6295a40b6e0e99fc49a69217457585afbb3bb180c5d55b587d50c7407d62c49776a9857ef41a87e1168a3f79d43c026254c5037bce579dda54a93a8588
|
7
|
+
data.tar.gz: ee91ad3cb9b80609b9a6f143c8af170d3800202883462b7bc4d661776eba87b734c0a63ffad1827c2b03b15182fedd380a6334823187a2671244774cb941f5ee
|
data/.cross_rubies
CHANGED
@@ -1,20 +1,25 @@
|
|
1
|
-
3.0
|
2
|
-
3.0
|
3
|
-
3.0
|
4
|
-
3.0
|
5
|
-
3.0
|
6
|
-
3.1
|
7
|
-
3.1
|
8
|
-
3.1
|
9
|
-
3.1
|
10
|
-
3.1
|
11
|
-
3.2
|
12
|
-
3.2
|
13
|
-
3.2
|
14
|
-
3.2
|
15
|
-
3.2
|
16
|
-
3.3
|
17
|
-
3.3
|
18
|
-
3.3
|
19
|
-
3.3
|
20
|
-
3.3
|
1
|
+
3.0:aarch64-linux
|
2
|
+
3.0:arm64-darwin
|
3
|
+
3.0:x64-mingw32
|
4
|
+
3.0:x86_64-darwin
|
5
|
+
3.0:x86_64-linux
|
6
|
+
3.1:aarch64-linux
|
7
|
+
3.1:arm64-darwin
|
8
|
+
3.1:x64-mingw-ucrt
|
9
|
+
3.1:x86_64-darwin
|
10
|
+
3.1:x86_64-linux
|
11
|
+
3.2:aarch64-linux
|
12
|
+
3.2:arm64-darwin
|
13
|
+
3.2:x64-mingw-ucrt
|
14
|
+
3.2:x86_64-darwin
|
15
|
+
3.2:x86_64-linux
|
16
|
+
3.3:aarch64-linux
|
17
|
+
3.3:arm64-darwin
|
18
|
+
3.3:x64-mingw-ucrt
|
19
|
+
3.3:x86_64-darwin
|
20
|
+
3.3:x86_64-linux
|
21
|
+
3.4:aarch64-linux
|
22
|
+
3.4:arm64-darwin
|
23
|
+
3.4:x64-mingw-ucrt
|
24
|
+
3.4:x86_64-darwin
|
25
|
+
3.4:x86_64-linux
|
@@ -1 +1 @@
|
|
1
|
-
{".":"0.5.
|
1
|
+
{".":"0.5.3"}
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.5.3](https://github.com/elct9620/cedar-policy-rb/compare/v0.5.2...v0.5.3) (2025-06-10)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* pass ruby versions to rb-sys-dock using --ruby-versions flag ([b94f1b7](https://github.com/elct9620/cedar-policy-rb/commit/b94f1b7e9c5d52c4e514c5f8553ccf7a71b25c53))
|
9
|
+
|
3
10
|
## [0.5.2](https://github.com/elct9620/cedar-policy-rb/compare/v0.5.1...v0.5.2) (2025-01-22)
|
4
11
|
|
5
12
|
|
data/Cargo.lock
CHANGED
@@ -96,9 +96,9 @@ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
96
96
|
|
97
97
|
[[package]]
|
98
98
|
name = "bitflags"
|
99
|
-
version = "2.
|
99
|
+
version = "2.9.1"
|
100
100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
101
|
-
checksum = "
|
101
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
102
102
|
|
103
103
|
[[package]]
|
104
104
|
name = "block-buffer"
|
@@ -111,33 +111,33 @@ dependencies = [
|
|
111
111
|
|
112
112
|
[[package]]
|
113
113
|
name = "borsh"
|
114
|
-
version = "1.5.
|
114
|
+
version = "1.5.7"
|
115
115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
116
|
-
checksum = "
|
116
|
+
checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
|
117
117
|
dependencies = [
|
118
118
|
"cfg_aliases",
|
119
119
|
]
|
120
120
|
|
121
121
|
[[package]]
|
122
122
|
name = "bumpalo"
|
123
|
-
version = "3.
|
123
|
+
version = "3.18.1"
|
124
124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
125
|
-
checksum = "
|
125
|
+
checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
|
126
126
|
|
127
127
|
[[package]]
|
128
128
|
name = "cc"
|
129
|
-
version = "1.2.
|
129
|
+
version = "1.2.26"
|
130
130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
131
|
-
checksum = "
|
131
|
+
checksum = "956a5e21988b87f372569b66183b78babf23ebc2e744b733e4350a752c4dafac"
|
132
132
|
dependencies = [
|
133
133
|
"shlex",
|
134
134
|
]
|
135
135
|
|
136
136
|
[[package]]
|
137
137
|
name = "cedar-policy"
|
138
|
-
version = "4.
|
138
|
+
version = "4.4.1"
|
139
139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
140
|
-
checksum = "
|
140
|
+
checksum = "a1d37df3afde553492d8413d02a733e86a786c29f5b36c6d8d72bc6e5c0c7f63"
|
141
141
|
dependencies = [
|
142
142
|
"cedar-policy-core",
|
143
143
|
"cedar-policy-formatter",
|
@@ -153,15 +153,16 @@ dependencies = [
|
|
153
153
|
"serde_json",
|
154
154
|
"serde_with",
|
155
155
|
"smol_str",
|
156
|
-
"thiserror
|
156
|
+
"thiserror",
|
157
157
|
]
|
158
158
|
|
159
159
|
[[package]]
|
160
160
|
name = "cedar-policy-core"
|
161
|
-
version = "4.
|
161
|
+
version = "4.4.1"
|
162
162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
163
|
-
checksum = "
|
163
|
+
checksum = "dd896075d493e8283e960c94cf85d85773dc3359cf948a5f5ea88a6f249e8665"
|
164
164
|
dependencies = [
|
165
|
+
"chrono",
|
165
166
|
"educe",
|
166
167
|
"either",
|
167
168
|
"itertools 0.14.0",
|
@@ -178,14 +179,14 @@ dependencies = [
|
|
178
179
|
"serde_with",
|
179
180
|
"smol_str",
|
180
181
|
"stacker",
|
181
|
-
"thiserror
|
182
|
+
"thiserror",
|
182
183
|
]
|
183
184
|
|
184
185
|
[[package]]
|
185
186
|
name = "cedar-policy-formatter"
|
186
|
-
version = "4.
|
187
|
+
version = "4.4.1"
|
187
188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
188
|
-
checksum = "
|
189
|
+
checksum = "95db50a024d5ed3efe4b9b513124b564313716ada017860c17995ec227ab46b1"
|
189
190
|
dependencies = [
|
190
191
|
"cedar-policy-core",
|
191
192
|
"itertools 0.14.0",
|
@@ -199,9 +200,9 @@ dependencies = [
|
|
199
200
|
|
200
201
|
[[package]]
|
201
202
|
name = "cedar-policy-validator"
|
202
|
-
version = "4.
|
203
|
+
version = "4.4.1"
|
203
204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
204
|
-
checksum = "
|
205
|
+
checksum = "2f40762e669e4ec5a4b3a2b3d3aa2567d768aa74b735760f13197312c1150f69"
|
205
206
|
dependencies = [
|
206
207
|
"cedar-policy-core",
|
207
208
|
"educe",
|
@@ -217,13 +218,13 @@ dependencies = [
|
|
217
218
|
"serde_with",
|
218
219
|
"smol_str",
|
219
220
|
"stacker",
|
220
|
-
"thiserror
|
221
|
+
"thiserror",
|
221
222
|
"unicode-security",
|
222
223
|
]
|
223
224
|
|
224
225
|
[[package]]
|
225
226
|
name = "cedar_policy"
|
226
|
-
version = "0.5.
|
227
|
+
version = "0.5.3"
|
227
228
|
dependencies = [
|
228
229
|
"cedar-policy",
|
229
230
|
"magnus",
|
@@ -241,9 +242,9 @@ dependencies = [
|
|
241
242
|
|
242
243
|
[[package]]
|
243
244
|
name = "cfg-if"
|
244
|
-
version = "1.0.
|
245
|
+
version = "1.0.1"
|
245
246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
246
|
-
checksum = "
|
247
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
247
248
|
|
248
249
|
[[package]]
|
249
250
|
name = "cfg_aliases"
|
@@ -253,15 +254,15 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
253
254
|
|
254
255
|
[[package]]
|
255
256
|
name = "chrono"
|
256
|
-
version = "0.4.
|
257
|
+
version = "0.4.41"
|
257
258
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
258
|
-
checksum = "
|
259
|
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
259
260
|
dependencies = [
|
260
261
|
"android-tzdata",
|
261
262
|
"iana-time-zone",
|
262
263
|
"num-traits",
|
263
264
|
"serde",
|
264
|
-
"windows-
|
265
|
+
"windows-link",
|
265
266
|
]
|
266
267
|
|
267
268
|
[[package]]
|
@@ -283,9 +284,9 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
283
284
|
|
284
285
|
[[package]]
|
285
286
|
name = "cpufeatures"
|
286
|
-
version = "0.2.
|
287
|
+
version = "0.2.17"
|
287
288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
288
|
-
checksum = "
|
289
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
289
290
|
dependencies = [
|
290
291
|
"libc",
|
291
292
|
]
|
@@ -302,9 +303,9 @@ dependencies = [
|
|
302
303
|
|
303
304
|
[[package]]
|
304
305
|
name = "darling"
|
305
|
-
version = "0.20.
|
306
|
+
version = "0.20.11"
|
306
307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
307
|
-
checksum = "
|
308
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
308
309
|
dependencies = [
|
309
310
|
"darling_core",
|
310
311
|
"darling_macro",
|
@@ -312,9 +313,9 @@ dependencies = [
|
|
312
313
|
|
313
314
|
[[package]]
|
314
315
|
name = "darling_core"
|
315
|
-
version = "0.20.
|
316
|
+
version = "0.20.11"
|
316
317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
317
|
-
checksum = "
|
318
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
318
319
|
dependencies = [
|
319
320
|
"fnv",
|
320
321
|
"ident_case",
|
@@ -326,9 +327,9 @@ dependencies = [
|
|
326
327
|
|
327
328
|
[[package]]
|
328
329
|
name = "darling_macro"
|
329
|
-
version = "0.20.
|
330
|
+
version = "0.20.11"
|
330
331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
331
|
-
checksum = "
|
332
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
332
333
|
dependencies = [
|
333
334
|
"darling_core",
|
334
335
|
"quote",
|
@@ -337,9 +338,9 @@ dependencies = [
|
|
337
338
|
|
338
339
|
[[package]]
|
339
340
|
name = "deranged"
|
340
|
-
version = "0.
|
341
|
+
version = "0.4.0"
|
341
342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
342
|
-
checksum = "
|
343
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
343
344
|
dependencies = [
|
344
345
|
"powerfmt",
|
345
346
|
"serde",
|
@@ -369,9 +370,9 @@ dependencies = [
|
|
369
370
|
|
370
371
|
[[package]]
|
371
372
|
name = "either"
|
372
|
-
version = "1.
|
373
|
+
version = "1.15.0"
|
373
374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
374
|
-
checksum = "
|
375
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
375
376
|
|
376
377
|
[[package]]
|
377
378
|
name = "ena"
|
@@ -404,9 +405,9 @@ dependencies = [
|
|
404
405
|
|
405
406
|
[[package]]
|
406
407
|
name = "equivalent"
|
407
|
-
version = "1.0.
|
408
|
+
version = "1.0.2"
|
408
409
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
409
|
-
checksum = "
|
410
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
410
411
|
|
411
412
|
[[package]]
|
412
413
|
name = "fixedbitset"
|
@@ -444,9 +445,9 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
444
445
|
|
445
446
|
[[package]]
|
446
447
|
name = "hashbrown"
|
447
|
-
version = "0.15.
|
448
|
+
version = "0.15.4"
|
448
449
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
449
|
-
checksum = "
|
450
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
450
451
|
|
451
452
|
[[package]]
|
452
453
|
name = "hex"
|
@@ -460,19 +461,20 @@ version = "0.5.11"
|
|
460
461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
461
462
|
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
462
463
|
dependencies = [
|
463
|
-
"windows-sys
|
464
|
+
"windows-sys",
|
464
465
|
]
|
465
466
|
|
466
467
|
[[package]]
|
467
468
|
name = "iana-time-zone"
|
468
|
-
version = "0.1.
|
469
|
+
version = "0.1.63"
|
469
470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
470
|
-
checksum = "
|
471
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
471
472
|
dependencies = [
|
472
473
|
"android_system_properties",
|
473
474
|
"core-foundation-sys",
|
474
475
|
"iana-time-zone-haiku",
|
475
476
|
"js-sys",
|
477
|
+
"log",
|
476
478
|
"wasm-bindgen",
|
477
479
|
"windows-core",
|
478
480
|
]
|
@@ -505,12 +507,12 @@ dependencies = [
|
|
505
507
|
|
506
508
|
[[package]]
|
507
509
|
name = "indexmap"
|
508
|
-
version = "2.
|
510
|
+
version = "2.9.0"
|
509
511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
510
|
-
checksum = "
|
512
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
511
513
|
dependencies = [
|
512
514
|
"equivalent",
|
513
|
-
"hashbrown 0.15.
|
515
|
+
"hashbrown 0.15.4",
|
514
516
|
"serde",
|
515
517
|
]
|
516
518
|
|
@@ -534,9 +536,9 @@ dependencies = [
|
|
534
536
|
|
535
537
|
[[package]]
|
536
538
|
name = "itoa"
|
537
|
-
version = "1.0.
|
539
|
+
version = "1.0.15"
|
538
540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
539
|
-
checksum = "
|
541
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
540
542
|
|
541
543
|
[[package]]
|
542
544
|
name = "js-sys"
|
@@ -559,9 +561,9 @@ dependencies = [
|
|
559
561
|
|
560
562
|
[[package]]
|
561
563
|
name = "lalrpop"
|
562
|
-
version = "0.22.
|
564
|
+
version = "0.22.2"
|
563
565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
564
|
-
checksum = "
|
566
|
+
checksum = "ba4ebbd48ce411c1d10fb35185f5a51a7bfa3d8b24b4e330d30c9e3a34129501"
|
565
567
|
dependencies = [
|
566
568
|
"ascii-canvas",
|
567
569
|
"bit-set",
|
@@ -581,9 +583,9 @@ dependencies = [
|
|
581
583
|
|
582
584
|
[[package]]
|
583
585
|
name = "lalrpop-util"
|
584
|
-
version = "0.22.
|
586
|
+
version = "0.22.2"
|
585
587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
586
|
-
checksum = "
|
588
|
+
checksum = "b5baa5e9ff84f1aefd264e6869907646538a52147a755d494517a8007fb48733"
|
587
589
|
dependencies = [
|
588
590
|
"regex-automata",
|
589
591
|
"rustversion",
|
@@ -603,25 +605,25 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
603
605
|
|
604
606
|
[[package]]
|
605
607
|
name = "libc"
|
606
|
-
version = "0.2.
|
608
|
+
version = "0.2.172"
|
607
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
608
|
-
checksum = "
|
610
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
609
611
|
|
610
612
|
[[package]]
|
611
613
|
name = "libloading"
|
612
|
-
version = "0.8.
|
614
|
+
version = "0.8.8"
|
613
615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
614
|
-
checksum = "
|
616
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
615
617
|
dependencies = [
|
616
618
|
"cfg-if",
|
617
|
-
"windows-targets",
|
619
|
+
"windows-targets 0.53.0",
|
618
620
|
]
|
619
621
|
|
620
622
|
[[package]]
|
621
623
|
name = "lock_api"
|
622
|
-
version = "0.4.
|
624
|
+
version = "0.4.13"
|
623
625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
624
|
-
checksum = "
|
626
|
+
checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
|
625
627
|
dependencies = [
|
626
628
|
"autocfg",
|
627
629
|
"scopeguard",
|
@@ -629,9 +631,9 @@ dependencies = [
|
|
629
631
|
|
630
632
|
[[package]]
|
631
633
|
name = "log"
|
632
|
-
version = "0.4.
|
634
|
+
version = "0.4.27"
|
633
635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
634
|
-
checksum = "
|
636
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
635
637
|
|
636
638
|
[[package]]
|
637
639
|
name = "logos"
|
@@ -669,9 +671,9 @@ dependencies = [
|
|
669
671
|
|
670
672
|
[[package]]
|
671
673
|
name = "magnus"
|
672
|
-
version = "0.
|
674
|
+
version = "0.7.1"
|
673
675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
674
|
-
checksum = "
|
676
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
675
677
|
dependencies = [
|
676
678
|
"magnus-macros",
|
677
679
|
"rb-sys",
|
@@ -698,22 +700,21 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
698
700
|
|
699
701
|
[[package]]
|
700
702
|
name = "miette"
|
701
|
-
version = "7.
|
703
|
+
version = "7.6.0"
|
702
704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
703
|
-
checksum = "
|
705
|
+
checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
|
704
706
|
dependencies = [
|
705
707
|
"cfg-if",
|
706
708
|
"miette-derive",
|
707
709
|
"serde",
|
708
|
-
"thiserror 1.0.69",
|
709
710
|
"unicode-width",
|
710
711
|
]
|
711
712
|
|
712
713
|
[[package]]
|
713
714
|
name = "miette-derive"
|
714
|
-
version = "7.
|
715
|
+
version = "7.6.0"
|
715
716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
716
|
-
checksum = "
|
717
|
+
checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
|
717
718
|
dependencies = [
|
718
719
|
"proc-macro2",
|
719
720
|
"quote",
|
@@ -747,6 +748,9 @@ name = "nonempty"
|
|
747
748
|
version = "0.10.0"
|
748
749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
749
750
|
checksum = "303e8749c804ccd6ca3b428de7fe0d86cb86bc7606bc15291f100fd487960bb8"
|
751
|
+
dependencies = [
|
752
|
+
"serde",
|
753
|
+
]
|
750
754
|
|
751
755
|
[[package]]
|
752
756
|
name = "num-conv"
|
@@ -765,15 +769,15 @@ dependencies = [
|
|
765
769
|
|
766
770
|
[[package]]
|
767
771
|
name = "once_cell"
|
768
|
-
version = "1.
|
772
|
+
version = "1.21.3"
|
769
773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
770
|
-
checksum = "
|
774
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
771
775
|
|
772
776
|
[[package]]
|
773
777
|
name = "parking_lot"
|
774
|
-
version = "0.12.
|
778
|
+
version = "0.12.4"
|
775
779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
776
|
-
checksum = "
|
780
|
+
checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
|
777
781
|
dependencies = [
|
778
782
|
"lock_api",
|
779
783
|
"parking_lot_core",
|
@@ -781,15 +785,15 @@ dependencies = [
|
|
781
785
|
|
782
786
|
[[package]]
|
783
787
|
name = "parking_lot_core"
|
784
|
-
version = "0.9.
|
788
|
+
version = "0.9.11"
|
785
789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
786
|
-
checksum = "
|
790
|
+
checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
|
787
791
|
dependencies = [
|
788
792
|
"cfg-if",
|
789
793
|
"libc",
|
790
794
|
"redox_syscall",
|
791
795
|
"smallvec",
|
792
|
-
"windows-targets",
|
796
|
+
"windows-targets 0.52.6",
|
793
797
|
]
|
794
798
|
|
795
799
|
[[package]]
|
@@ -799,14 +803,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
803
|
checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
|
800
804
|
dependencies = [
|
801
805
|
"fixedbitset",
|
802
|
-
"indexmap 2.
|
806
|
+
"indexmap 2.9.0",
|
803
807
|
]
|
804
808
|
|
805
809
|
[[package]]
|
806
810
|
name = "phf_shared"
|
807
|
-
version = "0.
|
811
|
+
version = "0.11.3"
|
808
812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
809
|
-
checksum = "
|
813
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
810
814
|
dependencies = [
|
811
815
|
"siphasher",
|
812
816
|
]
|
@@ -831,9 +835,9 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
831
835
|
|
832
836
|
[[package]]
|
833
837
|
name = "pretty"
|
834
|
-
version = "0.12.
|
838
|
+
version = "0.12.4"
|
835
839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
836
|
-
checksum = "
|
840
|
+
checksum = "ac98773b7109bc75f475ab5a134c9b64b87e59d776d31098d8f346922396a477"
|
837
841
|
dependencies = [
|
838
842
|
"arrayvec",
|
839
843
|
"typed-arena",
|
@@ -842,45 +846,45 @@ dependencies = [
|
|
842
846
|
|
843
847
|
[[package]]
|
844
848
|
name = "proc-macro2"
|
845
|
-
version = "1.0.
|
849
|
+
version = "1.0.95"
|
846
850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
847
|
-
checksum = "
|
851
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
848
852
|
dependencies = [
|
849
853
|
"unicode-ident",
|
850
854
|
]
|
851
855
|
|
852
856
|
[[package]]
|
853
857
|
name = "psm"
|
854
|
-
version = "0.1.
|
858
|
+
version = "0.1.26"
|
855
859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
856
|
-
checksum = "
|
860
|
+
checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
|
857
861
|
dependencies = [
|
858
862
|
"cc",
|
859
863
|
]
|
860
864
|
|
861
865
|
[[package]]
|
862
866
|
name = "quote"
|
863
|
-
version = "1.0.
|
867
|
+
version = "1.0.40"
|
864
868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
865
|
-
checksum = "
|
869
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
866
870
|
dependencies = [
|
867
871
|
"proc-macro2",
|
868
872
|
]
|
869
873
|
|
870
874
|
[[package]]
|
871
875
|
name = "rb-sys"
|
872
|
-
version = "0.9.
|
876
|
+
version = "0.9.116"
|
873
877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
874
|
-
checksum = "
|
878
|
+
checksum = "7059846f68396df83155779c75336ca24567741cb95256e6308c9fcc370e8dad"
|
875
879
|
dependencies = [
|
876
880
|
"rb-sys-build",
|
877
881
|
]
|
878
882
|
|
879
883
|
[[package]]
|
880
884
|
name = "rb-sys-build"
|
881
|
-
version = "0.9.
|
885
|
+
version = "0.9.116"
|
882
886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
883
|
-
checksum = "
|
887
|
+
checksum = "ac217510df41b9ffc041573e68d7a02aaff770c49943c7494441c4b224b0ecd0"
|
884
888
|
dependencies = [
|
885
889
|
"bindgen",
|
886
890
|
"lazy_static",
|
@@ -899,27 +903,27 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
899
903
|
|
900
904
|
[[package]]
|
901
905
|
name = "redox_syscall"
|
902
|
-
version = "0.5.
|
906
|
+
version = "0.5.12"
|
903
907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
904
|
-
checksum = "
|
908
|
+
checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
|
905
909
|
dependencies = [
|
906
910
|
"bitflags",
|
907
911
|
]
|
908
912
|
|
909
913
|
[[package]]
|
910
914
|
name = "ref-cast"
|
911
|
-
version = "1.0.
|
915
|
+
version = "1.0.24"
|
912
916
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
913
|
-
checksum = "
|
917
|
+
checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
|
914
918
|
dependencies = [
|
915
919
|
"ref-cast-impl",
|
916
920
|
]
|
917
921
|
|
918
922
|
[[package]]
|
919
923
|
name = "ref-cast-impl"
|
920
|
-
version = "1.0.
|
924
|
+
version = "1.0.24"
|
921
925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
922
|
-
checksum = "
|
926
|
+
checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
|
923
927
|
dependencies = [
|
924
928
|
"proc-macro2",
|
925
929
|
"quote",
|
@@ -981,15 +985,15 @@ dependencies = [
|
|
981
985
|
|
982
986
|
[[package]]
|
983
987
|
name = "rustversion"
|
984
|
-
version = "1.0.
|
988
|
+
version = "1.0.21"
|
985
989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
986
|
-
checksum = "
|
990
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
987
991
|
|
988
992
|
[[package]]
|
989
993
|
name = "ryu"
|
990
|
-
version = "1.0.
|
994
|
+
version = "1.0.20"
|
991
995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
992
|
-
checksum = "
|
996
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
993
997
|
|
994
998
|
[[package]]
|
995
999
|
name = "same-file"
|
@@ -1008,30 +1012,30 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1008
1012
|
|
1009
1013
|
[[package]]
|
1010
1014
|
name = "semver"
|
1011
|
-
version = "1.0.
|
1015
|
+
version = "1.0.26"
|
1012
1016
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1013
|
-
checksum = "
|
1017
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
1014
1018
|
|
1015
1019
|
[[package]]
|
1016
1020
|
name = "seq-macro"
|
1017
|
-
version = "0.3.
|
1021
|
+
version = "0.3.6"
|
1018
1022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1019
|
-
checksum = "
|
1023
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
1020
1024
|
|
1021
1025
|
[[package]]
|
1022
1026
|
name = "serde"
|
1023
|
-
version = "1.0.
|
1027
|
+
version = "1.0.219"
|
1024
1028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1025
|
-
checksum = "
|
1029
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
1026
1030
|
dependencies = [
|
1027
1031
|
"serde_derive",
|
1028
1032
|
]
|
1029
1033
|
|
1030
1034
|
[[package]]
|
1031
1035
|
name = "serde_derive"
|
1032
|
-
version = "1.0.
|
1036
|
+
version = "1.0.219"
|
1033
1037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1034
|
-
checksum = "
|
1038
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
1035
1039
|
dependencies = [
|
1036
1040
|
"proc-macro2",
|
1037
1041
|
"quote",
|
@@ -1040,11 +1044,11 @@ dependencies = [
|
|
1040
1044
|
|
1041
1045
|
[[package]]
|
1042
1046
|
name = "serde_json"
|
1043
|
-
version = "1.0.
|
1047
|
+
version = "1.0.140"
|
1044
1048
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1045
|
-
checksum = "
|
1049
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
1046
1050
|
dependencies = [
|
1047
|
-
"indexmap 2.
|
1051
|
+
"indexmap 2.9.0",
|
1048
1052
|
"itoa",
|
1049
1053
|
"memchr",
|
1050
1054
|
"ryu",
|
@@ -1053,9 +1057,9 @@ dependencies = [
|
|
1053
1057
|
|
1054
1058
|
[[package]]
|
1055
1059
|
name = "serde_magnus"
|
1056
|
-
version = "0.
|
1060
|
+
version = "0.9.0"
|
1057
1061
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1058
|
-
checksum = "
|
1062
|
+
checksum = "51b8b945a2dadb221f1c5490cfb411cab6c3821446b8eca50ee07e5a3893ec51"
|
1059
1063
|
dependencies = [
|
1060
1064
|
"magnus",
|
1061
1065
|
"serde",
|
@@ -1072,7 +1076,7 @@ dependencies = [
|
|
1072
1076
|
"chrono",
|
1073
1077
|
"hex",
|
1074
1078
|
"indexmap 1.9.3",
|
1075
|
-
"indexmap 2.
|
1079
|
+
"indexmap 2.9.0",
|
1076
1080
|
"serde",
|
1077
1081
|
"serde_derive",
|
1078
1082
|
"serde_json",
|
@@ -1116,15 +1120,15 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1116
1120
|
|
1117
1121
|
[[package]]
|
1118
1122
|
name = "siphasher"
|
1119
|
-
version = "0.
|
1123
|
+
version = "1.0.1"
|
1120
1124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1121
|
-
checksum = "
|
1125
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
1122
1126
|
|
1123
1127
|
[[package]]
|
1124
1128
|
name = "smallvec"
|
1125
|
-
version = "1.
|
1129
|
+
version = "1.15.1"
|
1126
1130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1127
|
-
checksum = "
|
1131
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
1128
1132
|
|
1129
1133
|
[[package]]
|
1130
1134
|
name = "smol_str"
|
@@ -1138,25 +1142,24 @@ dependencies = [
|
|
1138
1142
|
|
1139
1143
|
[[package]]
|
1140
1144
|
name = "stacker"
|
1141
|
-
version = "0.1.
|
1145
|
+
version = "0.1.21"
|
1142
1146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1143
|
-
checksum = "
|
1147
|
+
checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b"
|
1144
1148
|
dependencies = [
|
1145
1149
|
"cc",
|
1146
1150
|
"cfg-if",
|
1147
1151
|
"libc",
|
1148
1152
|
"psm",
|
1149
|
-
"windows-sys
|
1153
|
+
"windows-sys",
|
1150
1154
|
]
|
1151
1155
|
|
1152
1156
|
[[package]]
|
1153
1157
|
name = "string_cache"
|
1154
|
-
version = "0.8.
|
1158
|
+
version = "0.8.9"
|
1155
1159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1156
|
-
checksum = "
|
1160
|
+
checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
|
1157
1161
|
dependencies = [
|
1158
1162
|
"new_debug_unreachable",
|
1159
|
-
"once_cell",
|
1160
1163
|
"parking_lot",
|
1161
1164
|
"phf_shared",
|
1162
1165
|
"precomputed-hash",
|
@@ -1170,9 +1173,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1170
1173
|
|
1171
1174
|
[[package]]
|
1172
1175
|
name = "syn"
|
1173
|
-
version = "2.0.
|
1176
|
+
version = "2.0.102"
|
1174
1177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1175
|
-
checksum = "
|
1178
|
+
checksum = "f6397daf94fa90f058bd0fd88429dd9e5738999cca8d701813c80723add80462"
|
1176
1179
|
dependencies = [
|
1177
1180
|
"proc-macro2",
|
1178
1181
|
"quote",
|
@@ -1187,48 +1190,28 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
1187
1190
|
|
1188
1191
|
[[package]]
|
1189
1192
|
name = "term"
|
1190
|
-
version = "1.0.
|
1193
|
+
version = "1.0.2"
|
1191
1194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1192
|
-
checksum = "
|
1195
|
+
checksum = "8a984c8d058c627faaf5e8e2ed493fa3c51771889196de1016cf9c1c6e90d750"
|
1193
1196
|
dependencies = [
|
1194
1197
|
"home",
|
1195
|
-
"windows-sys
|
1196
|
-
]
|
1197
|
-
|
1198
|
-
[[package]]
|
1199
|
-
name = "thiserror"
|
1200
|
-
version = "1.0.69"
|
1201
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1202
|
-
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
1203
|
-
dependencies = [
|
1204
|
-
"thiserror-impl 1.0.69",
|
1198
|
+
"windows-sys",
|
1205
1199
|
]
|
1206
1200
|
|
1207
1201
|
[[package]]
|
1208
1202
|
name = "thiserror"
|
1209
|
-
version = "2.0.
|
1210
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1211
|
-
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
|
1212
|
-
dependencies = [
|
1213
|
-
"thiserror-impl 2.0.11",
|
1214
|
-
]
|
1215
|
-
|
1216
|
-
[[package]]
|
1217
|
-
name = "thiserror-impl"
|
1218
|
-
version = "1.0.69"
|
1203
|
+
version = "2.0.12"
|
1219
1204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1220
|
-
checksum = "
|
1205
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
1221
1206
|
dependencies = [
|
1222
|
-
"
|
1223
|
-
"quote",
|
1224
|
-
"syn",
|
1207
|
+
"thiserror-impl",
|
1225
1208
|
]
|
1226
1209
|
|
1227
1210
|
[[package]]
|
1228
1211
|
name = "thiserror-impl"
|
1229
|
-
version = "2.0.
|
1212
|
+
version = "2.0.12"
|
1230
1213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1231
|
-
checksum = "
|
1214
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
1232
1215
|
dependencies = [
|
1233
1216
|
"proc-macro2",
|
1234
1217
|
"quote",
|
@@ -1237,9 +1220,9 @@ dependencies = [
|
|
1237
1220
|
|
1238
1221
|
[[package]]
|
1239
1222
|
name = "time"
|
1240
|
-
version = "0.3.
|
1223
|
+
version = "0.3.41"
|
1241
1224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1242
|
-
checksum = "
|
1225
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
1243
1226
|
dependencies = [
|
1244
1227
|
"deranged",
|
1245
1228
|
"itoa",
|
@@ -1252,15 +1235,15 @@ dependencies = [
|
|
1252
1235
|
|
1253
1236
|
[[package]]
|
1254
1237
|
name = "time-core"
|
1255
|
-
version = "0.1.
|
1238
|
+
version = "0.1.4"
|
1256
1239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1257
|
-
checksum = "
|
1240
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
1258
1241
|
|
1259
1242
|
[[package]]
|
1260
1243
|
name = "time-macros"
|
1261
|
-
version = "0.2.
|
1244
|
+
version = "0.2.22"
|
1262
1245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1263
|
-
checksum = "
|
1246
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
1264
1247
|
dependencies = [
|
1265
1248
|
"num-conv",
|
1266
1249
|
"time-core",
|
@@ -1268,9 +1251,9 @@ dependencies = [
|
|
1268
1251
|
|
1269
1252
|
[[package]]
|
1270
1253
|
name = "tinyvec"
|
1271
|
-
version = "1.
|
1254
|
+
version = "1.9.0"
|
1272
1255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1273
|
-
checksum = "
|
1256
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
1274
1257
|
dependencies = [
|
1275
1258
|
"tinyvec_macros",
|
1276
1259
|
]
|
@@ -1289,15 +1272,15 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
1289
1272
|
|
1290
1273
|
[[package]]
|
1291
1274
|
name = "typenum"
|
1292
|
-
version = "1.
|
1275
|
+
version = "1.18.0"
|
1293
1276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1294
|
-
checksum = "
|
1277
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
1295
1278
|
|
1296
1279
|
[[package]]
|
1297
1280
|
name = "unicode-ident"
|
1298
|
-
version = "1.0.
|
1281
|
+
version = "1.0.18"
|
1299
1282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1300
|
-
checksum = "
|
1283
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
1301
1284
|
|
1302
1285
|
[[package]]
|
1303
1286
|
name = "unicode-normalization"
|
@@ -1416,25 +1399,66 @@ version = "0.1.9"
|
|
1416
1399
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1417
1400
|
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
1418
1401
|
dependencies = [
|
1419
|
-
"windows-sys
|
1402
|
+
"windows-sys",
|
1420
1403
|
]
|
1421
1404
|
|
1422
1405
|
[[package]]
|
1423
1406
|
name = "windows-core"
|
1424
|
-
version = "0.
|
1407
|
+
version = "0.61.2"
|
1425
1408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1426
|
-
checksum = "
|
1409
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
1427
1410
|
dependencies = [
|
1428
|
-
"windows-
|
1411
|
+
"windows-implement",
|
1412
|
+
"windows-interface",
|
1413
|
+
"windows-link",
|
1414
|
+
"windows-result",
|
1415
|
+
"windows-strings",
|
1429
1416
|
]
|
1430
1417
|
|
1431
1418
|
[[package]]
|
1432
|
-
name = "windows-
|
1433
|
-
version = "0.
|
1419
|
+
name = "windows-implement"
|
1420
|
+
version = "0.60.0"
|
1434
1421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1435
|
-
checksum = "
|
1422
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
1436
1423
|
dependencies = [
|
1437
|
-
"
|
1424
|
+
"proc-macro2",
|
1425
|
+
"quote",
|
1426
|
+
"syn",
|
1427
|
+
]
|
1428
|
+
|
1429
|
+
[[package]]
|
1430
|
+
name = "windows-interface"
|
1431
|
+
version = "0.59.1"
|
1432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1433
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
1434
|
+
dependencies = [
|
1435
|
+
"proc-macro2",
|
1436
|
+
"quote",
|
1437
|
+
"syn",
|
1438
|
+
]
|
1439
|
+
|
1440
|
+
[[package]]
|
1441
|
+
name = "windows-link"
|
1442
|
+
version = "0.1.1"
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1444
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
1445
|
+
|
1446
|
+
[[package]]
|
1447
|
+
name = "windows-result"
|
1448
|
+
version = "0.3.4"
|
1449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1450
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
1451
|
+
dependencies = [
|
1452
|
+
"windows-link",
|
1453
|
+
]
|
1454
|
+
|
1455
|
+
[[package]]
|
1456
|
+
name = "windows-strings"
|
1457
|
+
version = "0.4.2"
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1459
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
1460
|
+
dependencies = [
|
1461
|
+
"windows-link",
|
1438
1462
|
]
|
1439
1463
|
|
1440
1464
|
[[package]]
|
@@ -1443,7 +1467,7 @@ version = "0.59.0"
|
|
1443
1467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1444
1468
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
1445
1469
|
dependencies = [
|
1446
|
-
"windows-targets",
|
1470
|
+
"windows-targets 0.52.6",
|
1447
1471
|
]
|
1448
1472
|
|
1449
1473
|
[[package]]
|
@@ -1452,14 +1476,30 @@ version = "0.52.6"
|
|
1452
1476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1453
1477
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
1454
1478
|
dependencies = [
|
1455
|
-
"windows_aarch64_gnullvm",
|
1456
|
-
"windows_aarch64_msvc",
|
1457
|
-
"windows_i686_gnu",
|
1458
|
-
"windows_i686_gnullvm",
|
1459
|
-
"windows_i686_msvc",
|
1460
|
-
"windows_x86_64_gnu",
|
1461
|
-
"windows_x86_64_gnullvm",
|
1462
|
-
"windows_x86_64_msvc",
|
1479
|
+
"windows_aarch64_gnullvm 0.52.6",
|
1480
|
+
"windows_aarch64_msvc 0.52.6",
|
1481
|
+
"windows_i686_gnu 0.52.6",
|
1482
|
+
"windows_i686_gnullvm 0.52.6",
|
1483
|
+
"windows_i686_msvc 0.52.6",
|
1484
|
+
"windows_x86_64_gnu 0.52.6",
|
1485
|
+
"windows_x86_64_gnullvm 0.52.6",
|
1486
|
+
"windows_x86_64_msvc 0.52.6",
|
1487
|
+
]
|
1488
|
+
|
1489
|
+
[[package]]
|
1490
|
+
name = "windows-targets"
|
1491
|
+
version = "0.53.0"
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1493
|
+
checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
|
1494
|
+
dependencies = [
|
1495
|
+
"windows_aarch64_gnullvm 0.53.0",
|
1496
|
+
"windows_aarch64_msvc 0.53.0",
|
1497
|
+
"windows_i686_gnu 0.53.0",
|
1498
|
+
"windows_i686_gnullvm 0.53.0",
|
1499
|
+
"windows_i686_msvc 0.53.0",
|
1500
|
+
"windows_x86_64_gnu 0.53.0",
|
1501
|
+
"windows_x86_64_gnullvm 0.53.0",
|
1502
|
+
"windows_x86_64_msvc 0.53.0",
|
1463
1503
|
]
|
1464
1504
|
|
1465
1505
|
[[package]]
|
@@ -1468,44 +1508,92 @@ version = "0.52.6"
|
|
1468
1508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1469
1509
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
1470
1510
|
|
1511
|
+
[[package]]
|
1512
|
+
name = "windows_aarch64_gnullvm"
|
1513
|
+
version = "0.53.0"
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1515
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
1516
|
+
|
1471
1517
|
[[package]]
|
1472
1518
|
name = "windows_aarch64_msvc"
|
1473
1519
|
version = "0.52.6"
|
1474
1520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1475
1521
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
1476
1522
|
|
1523
|
+
[[package]]
|
1524
|
+
name = "windows_aarch64_msvc"
|
1525
|
+
version = "0.53.0"
|
1526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1527
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
1528
|
+
|
1477
1529
|
[[package]]
|
1478
1530
|
name = "windows_i686_gnu"
|
1479
1531
|
version = "0.52.6"
|
1480
1532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1481
1533
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
1482
1534
|
|
1535
|
+
[[package]]
|
1536
|
+
name = "windows_i686_gnu"
|
1537
|
+
version = "0.53.0"
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1539
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
1540
|
+
|
1483
1541
|
[[package]]
|
1484
1542
|
name = "windows_i686_gnullvm"
|
1485
1543
|
version = "0.52.6"
|
1486
1544
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1487
1545
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
1488
1546
|
|
1547
|
+
[[package]]
|
1548
|
+
name = "windows_i686_gnullvm"
|
1549
|
+
version = "0.53.0"
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1551
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
1552
|
+
|
1489
1553
|
[[package]]
|
1490
1554
|
name = "windows_i686_msvc"
|
1491
1555
|
version = "0.52.6"
|
1492
1556
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1493
1557
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1494
1558
|
|
1559
|
+
[[package]]
|
1560
|
+
name = "windows_i686_msvc"
|
1561
|
+
version = "0.53.0"
|
1562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1563
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
1564
|
+
|
1495
1565
|
[[package]]
|
1496
1566
|
name = "windows_x86_64_gnu"
|
1497
1567
|
version = "0.52.6"
|
1498
1568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1499
1569
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1500
1570
|
|
1571
|
+
[[package]]
|
1572
|
+
name = "windows_x86_64_gnu"
|
1573
|
+
version = "0.53.0"
|
1574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1575
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
1576
|
+
|
1501
1577
|
[[package]]
|
1502
1578
|
name = "windows_x86_64_gnullvm"
|
1503
1579
|
version = "0.52.6"
|
1504
1580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1505
1581
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
1506
1582
|
|
1583
|
+
[[package]]
|
1584
|
+
name = "windows_x86_64_gnullvm"
|
1585
|
+
version = "0.53.0"
|
1586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1587
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
1588
|
+
|
1507
1589
|
[[package]]
|
1508
1590
|
name = "windows_x86_64_msvc"
|
1509
1591
|
version = "0.52.6"
|
1510
1592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1511
1593
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
1594
|
+
|
1595
|
+
[[package]]
|
1596
|
+
name = "windows_x86_64_msvc"
|
1597
|
+
version = "0.53.0"
|
1598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1599
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
data/ext/cedar_policy/Cargo.toml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
[package]
|
2
2
|
name = "cedar_policy"
|
3
|
-
version = "0.5.
|
3
|
+
version = "0.5.3"
|
4
4
|
edition = "2021"
|
5
5
|
authors = ["Aotokitsuruya <contact@aotoki.me>"]
|
6
6
|
license = "Apache-2.0"
|
@@ -10,6 +10,6 @@ publish = false
|
|
10
10
|
crate-type = ["cdylib"]
|
11
11
|
|
12
12
|
[dependencies]
|
13
|
-
cedar-policy = "4.
|
14
|
-
magnus = "0.
|
15
|
-
serde_magnus = "0.
|
13
|
+
cedar-policy = "4.4.1"
|
14
|
+
magnus = "0.7.1"
|
15
|
+
serde_magnus = "0.9.0"
|
data/lib/cedar_policy/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cedar_policy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aotokitsuruya
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-06-10 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Ruby bindings for Cedar policy evaluation engine.
|
14
14
|
email:
|