smbcloud-auth 0.4.7 → 0.4.10
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/Cargo.lock +154 -260
- data/README.md +1 -1
- data/Rakefile +18 -0
- data/ext/auth/Cargo.toml +1 -1
- data/ext/auth/extconf.rb +12 -0
- data/lib/auth/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: c87712c13165eac39eb961123e450d9d25e3d9f63ceb9b696a5a6d9e50f59e33
|
|
4
|
+
data.tar.gz: 02de65c179337c9d92f922c203a1f5230426bc8423892eb738cf8f29cc2d73a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d48c2f4f1fc61346b45dccb4a787e2af24fa10d69a70fc721e4566beef4dd19835809a8305629962e25526414a636a7f0fd4d0cfe94b98a5b5ea69286439598f
|
|
7
|
+
data.tar.gz: ed6ff158dfd4574e80a60af94c81fbe8f6fd19266524219b5427bdc4fd5d177b396f8af3fe393718eeec7134ee20b652713210c3ad8dfe87ecdcc75601ee8e3d
|
data/Cargo.lock
CHANGED
|
@@ -98,7 +98,7 @@ dependencies = [
|
|
|
98
98
|
|
|
99
99
|
[[package]]
|
|
100
100
|
name = "auth"
|
|
101
|
-
version = "0.4.
|
|
101
|
+
version = "0.4.10"
|
|
102
102
|
dependencies = [
|
|
103
103
|
"magnus",
|
|
104
104
|
"serde",
|
|
@@ -127,7 +127,7 @@ version = "0.72.1"
|
|
|
127
127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
128
|
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
129
129
|
dependencies = [
|
|
130
|
-
"bitflags 2.13.
|
|
130
|
+
"bitflags 2.13.1",
|
|
131
131
|
"cexpr",
|
|
132
132
|
"clang-sys",
|
|
133
133
|
"itertools",
|
|
@@ -136,7 +136,7 @@ dependencies = [
|
|
|
136
136
|
"regex",
|
|
137
137
|
"rustc-hash",
|
|
138
138
|
"shlex 1.3.0",
|
|
139
|
-
"syn 2.0.
|
|
139
|
+
"syn 2.0.119",
|
|
140
140
|
]
|
|
141
141
|
|
|
142
142
|
[[package]]
|
|
@@ -147,9 +147,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
147
147
|
|
|
148
148
|
[[package]]
|
|
149
149
|
name = "bitflags"
|
|
150
|
-
version = "2.13.
|
|
150
|
+
version = "2.13.1"
|
|
151
151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
-
checksum = "
|
|
152
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
153
153
|
|
|
154
154
|
[[package]]
|
|
155
155
|
name = "block-buffer"
|
|
@@ -168,15 +168,15 @@ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
|
168
168
|
|
|
169
169
|
[[package]]
|
|
170
170
|
name = "bytes"
|
|
171
|
-
version = "1.12.
|
|
171
|
+
version = "1.12.1"
|
|
172
172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
-
checksum = "
|
|
173
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
174
174
|
|
|
175
175
|
[[package]]
|
|
176
176
|
name = "cc"
|
|
177
|
-
version = "1.
|
|
177
|
+
version = "1.3.0"
|
|
178
178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
-
checksum = "
|
|
179
|
+
checksum = "c89588d05638b5b4594a3348a2d6c20277e43a7f5c5202b05cc56888475a47b8"
|
|
180
180
|
dependencies = [
|
|
181
181
|
"find-msvc-tools",
|
|
182
182
|
"shlex 2.0.1",
|
|
@@ -199,9 +199,20 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
199
199
|
|
|
200
200
|
[[package]]
|
|
201
201
|
name = "cfg_aliases"
|
|
202
|
-
version = "0.2.
|
|
202
|
+
version = "0.2.2"
|
|
203
203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
-
checksum = "
|
|
204
|
+
checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "chacha20"
|
|
208
|
+
version = "0.10.1"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"cfg-if",
|
|
213
|
+
"cpufeatures 0.3.0",
|
|
214
|
+
"rand_core",
|
|
215
|
+
]
|
|
205
216
|
|
|
206
217
|
[[package]]
|
|
207
218
|
name = "chrono"
|
|
@@ -245,9 +256,9 @@ dependencies = [
|
|
|
245
256
|
|
|
246
257
|
[[package]]
|
|
247
258
|
name = "clap"
|
|
248
|
-
version = "4.6.
|
|
259
|
+
version = "4.6.2"
|
|
249
260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
-
checksum = "
|
|
261
|
+
checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011"
|
|
251
262
|
dependencies = [
|
|
252
263
|
"clap_builder",
|
|
253
264
|
"clap_derive",
|
|
@@ -255,9 +266,9 @@ dependencies = [
|
|
|
255
266
|
|
|
256
267
|
[[package]]
|
|
257
268
|
name = "clap_builder"
|
|
258
|
-
version = "4.6.
|
|
269
|
+
version = "4.6.2"
|
|
259
270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
-
checksum = "
|
|
271
|
+
checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
|
|
261
272
|
dependencies = [
|
|
262
273
|
"anstream",
|
|
263
274
|
"anstyle",
|
|
@@ -274,7 +285,7 @@ dependencies = [
|
|
|
274
285
|
"heck 0.5.0",
|
|
275
286
|
"proc-macro2",
|
|
276
287
|
"quote",
|
|
277
|
-
"syn 2.0.
|
|
288
|
+
"syn 2.0.119",
|
|
278
289
|
]
|
|
279
290
|
|
|
280
291
|
[[package]]
|
|
@@ -323,6 +334,15 @@ dependencies = [
|
|
|
323
334
|
"libc",
|
|
324
335
|
]
|
|
325
336
|
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "cpufeatures"
|
|
339
|
+
version = "0.3.0"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"libc",
|
|
344
|
+
]
|
|
345
|
+
|
|
326
346
|
[[package]]
|
|
327
347
|
name = "crypto-common"
|
|
328
348
|
version = "0.1.7"
|
|
@@ -351,7 +371,7 @@ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
|
351
371
|
dependencies = [
|
|
352
372
|
"proc-macro2",
|
|
353
373
|
"quote",
|
|
354
|
-
"syn 2.0.
|
|
374
|
+
"syn 2.0.119",
|
|
355
375
|
]
|
|
356
376
|
|
|
357
377
|
[[package]]
|
|
@@ -377,30 +397,30 @@ dependencies = [
|
|
|
377
397
|
|
|
378
398
|
[[package]]
|
|
379
399
|
name = "futures-channel"
|
|
380
|
-
version = "0.3.
|
|
400
|
+
version = "0.3.33"
|
|
381
401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
-
checksum = "
|
|
402
|
+
checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
|
|
383
403
|
dependencies = [
|
|
384
404
|
"futures-core",
|
|
385
405
|
]
|
|
386
406
|
|
|
387
407
|
[[package]]
|
|
388
408
|
name = "futures-core"
|
|
389
|
-
version = "0.3.
|
|
409
|
+
version = "0.3.33"
|
|
390
410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
-
checksum = "
|
|
411
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
392
412
|
|
|
393
413
|
[[package]]
|
|
394
414
|
name = "futures-task"
|
|
395
|
-
version = "0.3.
|
|
415
|
+
version = "0.3.33"
|
|
396
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
-
checksum = "
|
|
417
|
+
checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
|
|
398
418
|
|
|
399
419
|
[[package]]
|
|
400
420
|
name = "futures-util"
|
|
401
|
-
version = "0.3.
|
|
421
|
+
version = "0.3.33"
|
|
402
422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
-
checksum = "
|
|
423
|
+
checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
|
|
404
424
|
dependencies = [
|
|
405
425
|
"futures-core",
|
|
406
426
|
"futures-task",
|
|
@@ -444,20 +464,6 @@ dependencies = [
|
|
|
444
464
|
"wasm-bindgen",
|
|
445
465
|
]
|
|
446
466
|
|
|
447
|
-
[[package]]
|
|
448
|
-
name = "getrandom"
|
|
449
|
-
version = "0.3.4"
|
|
450
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
-
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
452
|
-
dependencies = [
|
|
453
|
-
"cfg-if",
|
|
454
|
-
"js-sys",
|
|
455
|
-
"libc",
|
|
456
|
-
"r-efi 5.3.0",
|
|
457
|
-
"wasip2",
|
|
458
|
-
"wasm-bindgen",
|
|
459
|
-
]
|
|
460
|
-
|
|
461
467
|
[[package]]
|
|
462
468
|
name = "getrandom"
|
|
463
469
|
version = "0.4.3"
|
|
@@ -465,8 +471,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
465
471
|
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
466
472
|
dependencies = [
|
|
467
473
|
"cfg-if",
|
|
474
|
+
"js-sys",
|
|
468
475
|
"libc",
|
|
469
|
-
"r-efi
|
|
476
|
+
"r-efi",
|
|
477
|
+
"rand_core",
|
|
478
|
+
"wasm-bindgen",
|
|
470
479
|
]
|
|
471
480
|
|
|
472
481
|
[[package]]
|
|
@@ -517,9 +526,9 @@ dependencies = [
|
|
|
517
526
|
|
|
518
527
|
[[package]]
|
|
519
528
|
name = "http-body"
|
|
520
|
-
version = "1.0
|
|
529
|
+
version = "1.1.0"
|
|
521
530
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
-
checksum = "
|
|
531
|
+
checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
|
|
523
532
|
dependencies = [
|
|
524
533
|
"bytes",
|
|
525
534
|
"http",
|
|
@@ -527,9 +536,9 @@ dependencies = [
|
|
|
527
536
|
|
|
528
537
|
[[package]]
|
|
529
538
|
name = "http-body-util"
|
|
530
|
-
version = "0.1.
|
|
539
|
+
version = "0.1.4"
|
|
531
540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
-
checksum = "
|
|
541
|
+
checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
|
|
533
542
|
dependencies = [
|
|
534
543
|
"bytes",
|
|
535
544
|
"futures-core",
|
|
@@ -843,7 +852,7 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
|
843
852
|
dependencies = [
|
|
844
853
|
"proc-macro2",
|
|
845
854
|
"quote",
|
|
846
|
-
"syn 2.0.
|
|
855
|
+
"syn 2.0.119",
|
|
847
856
|
]
|
|
848
857
|
|
|
849
858
|
[[package]]
|
|
@@ -863,9 +872,9 @@ dependencies = [
|
|
|
863
872
|
|
|
864
873
|
[[package]]
|
|
865
874
|
name = "memchr"
|
|
866
|
-
version = "2.8.
|
|
875
|
+
version = "2.8.3"
|
|
867
876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
-
checksum = "
|
|
877
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
869
878
|
|
|
870
879
|
[[package]]
|
|
871
880
|
name = "minimal-lexical"
|
|
@@ -875,9 +884,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
875
884
|
|
|
876
885
|
[[package]]
|
|
877
886
|
name = "mio"
|
|
878
|
-
version = "1.2.
|
|
887
|
+
version = "1.2.2"
|
|
879
888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
-
checksum = "
|
|
889
|
+
checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
|
|
881
890
|
dependencies = [
|
|
882
891
|
"libc",
|
|
883
892
|
"wasi",
|
|
@@ -951,15 +960,6 @@ dependencies = [
|
|
|
951
960
|
"zerovec",
|
|
952
961
|
]
|
|
953
962
|
|
|
954
|
-
[[package]]
|
|
955
|
-
name = "ppv-lite86"
|
|
956
|
-
version = "0.2.21"
|
|
957
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
-
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
959
|
-
dependencies = [
|
|
960
|
-
"zerocopy",
|
|
961
|
-
]
|
|
962
|
-
|
|
963
963
|
[[package]]
|
|
964
964
|
name = "proc-macro-error"
|
|
965
965
|
version = "1.0.4"
|
|
@@ -986,9 +986,9 @@ dependencies = [
|
|
|
986
986
|
|
|
987
987
|
[[package]]
|
|
988
988
|
name = "proc-macro2"
|
|
989
|
-
version = "1.0.
|
|
989
|
+
version = "1.0.107"
|
|
990
990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
-
checksum = "
|
|
991
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
992
992
|
dependencies = [
|
|
993
993
|
"unicode-ident",
|
|
994
994
|
]
|
|
@@ -1015,14 +1015,15 @@ dependencies = [
|
|
|
1015
1015
|
|
|
1016
1016
|
[[package]]
|
|
1017
1017
|
name = "quinn-proto"
|
|
1018
|
-
version = "0.11.
|
|
1018
|
+
version = "0.11.16"
|
|
1019
1019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
-
checksum = "
|
|
1020
|
+
checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
|
|
1021
1021
|
dependencies = [
|
|
1022
1022
|
"bytes",
|
|
1023
|
-
"getrandom 0.3
|
|
1023
|
+
"getrandom 0.4.3",
|
|
1024
1024
|
"lru-slab",
|
|
1025
1025
|
"rand",
|
|
1026
|
+
"rand_pcg",
|
|
1026
1027
|
"ring",
|
|
1027
1028
|
"rustc-hash",
|
|
1028
1029
|
"rustls",
|
|
@@ -1036,33 +1037,27 @@ dependencies = [
|
|
|
1036
1037
|
|
|
1037
1038
|
[[package]]
|
|
1038
1039
|
name = "quinn-udp"
|
|
1039
|
-
version = "0.5.
|
|
1040
|
+
version = "0.5.15"
|
|
1040
1041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
-
checksum = "
|
|
1042
|
+
checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
|
|
1042
1043
|
dependencies = [
|
|
1043
1044
|
"cfg_aliases",
|
|
1044
1045
|
"libc",
|
|
1045
1046
|
"once_cell",
|
|
1046
1047
|
"socket2",
|
|
1047
1048
|
"tracing",
|
|
1048
|
-
"windows-sys 0.
|
|
1049
|
+
"windows-sys 0.61.2",
|
|
1049
1050
|
]
|
|
1050
1051
|
|
|
1051
1052
|
[[package]]
|
|
1052
1053
|
name = "quote"
|
|
1053
|
-
version = "1.0.
|
|
1054
|
+
version = "1.0.47"
|
|
1054
1055
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
-
checksum = "
|
|
1056
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
1056
1057
|
dependencies = [
|
|
1057
1058
|
"proc-macro2",
|
|
1058
1059
|
]
|
|
1059
1060
|
|
|
1060
|
-
[[package]]
|
|
1061
|
-
name = "r-efi"
|
|
1062
|
-
version = "5.3.0"
|
|
1063
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
-
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1065
|
-
|
|
1066
1061
|
[[package]]
|
|
1067
1062
|
name = "r-efi"
|
|
1068
1063
|
version = "6.0.0"
|
|
@@ -1071,31 +1066,28 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
|
1071
1066
|
|
|
1072
1067
|
[[package]]
|
|
1073
1068
|
name = "rand"
|
|
1074
|
-
version = "0.
|
|
1069
|
+
version = "0.10.2"
|
|
1075
1070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
-
checksum = "
|
|
1071
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
1077
1072
|
dependencies = [
|
|
1078
|
-
"
|
|
1073
|
+
"chacha20",
|
|
1074
|
+
"getrandom 0.4.3",
|
|
1079
1075
|
"rand_core",
|
|
1080
1076
|
]
|
|
1081
1077
|
|
|
1082
1078
|
[[package]]
|
|
1083
|
-
name = "
|
|
1084
|
-
version = "0.
|
|
1079
|
+
name = "rand_core"
|
|
1080
|
+
version = "0.10.1"
|
|
1085
1081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1086
|
-
checksum = "
|
|
1087
|
-
dependencies = [
|
|
1088
|
-
"ppv-lite86",
|
|
1089
|
-
"rand_core",
|
|
1090
|
-
]
|
|
1082
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
1091
1083
|
|
|
1092
1084
|
[[package]]
|
|
1093
|
-
name = "
|
|
1094
|
-
version = "0.
|
|
1085
|
+
name = "rand_pcg"
|
|
1086
|
+
version = "0.10.2"
|
|
1095
1087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
-
checksum = "
|
|
1088
|
+
checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
|
|
1097
1089
|
dependencies = [
|
|
1098
|
-
"
|
|
1090
|
+
"rand_core",
|
|
1099
1091
|
]
|
|
1100
1092
|
|
|
1101
1093
|
[[package]]
|
|
@@ -1119,7 +1111,7 @@ dependencies = [
|
|
|
1119
1111
|
"quote",
|
|
1120
1112
|
"regex",
|
|
1121
1113
|
"shell-words",
|
|
1122
|
-
"syn 2.0.
|
|
1114
|
+
"syn 2.0.119",
|
|
1123
1115
|
]
|
|
1124
1116
|
|
|
1125
1117
|
[[package]]
|
|
@@ -1130,9 +1122,9 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
|
1130
1122
|
|
|
1131
1123
|
[[package]]
|
|
1132
1124
|
name = "regex"
|
|
1133
|
-
version = "1.
|
|
1125
|
+
version = "1.13.1"
|
|
1134
1126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
-
checksum = "
|
|
1127
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
1136
1128
|
dependencies = [
|
|
1137
1129
|
"aho-corasick",
|
|
1138
1130
|
"memchr",
|
|
@@ -1142,9 +1134,9 @@ dependencies = [
|
|
|
1142
1134
|
|
|
1143
1135
|
[[package]]
|
|
1144
1136
|
name = "regex-automata"
|
|
1145
|
-
version = "0.4.
|
|
1137
|
+
version = "0.4.16"
|
|
1146
1138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
-
checksum = "
|
|
1139
|
+
checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
|
|
1148
1140
|
dependencies = [
|
|
1149
1141
|
"aho-corasick",
|
|
1150
1142
|
"memchr",
|
|
@@ -1211,15 +1203,15 @@ dependencies = [
|
|
|
1211
1203
|
|
|
1212
1204
|
[[package]]
|
|
1213
1205
|
name = "rustc-hash"
|
|
1214
|
-
version = "2.1.
|
|
1206
|
+
version = "2.1.3"
|
|
1215
1207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
-
checksum = "
|
|
1208
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
1217
1209
|
|
|
1218
1210
|
[[package]]
|
|
1219
1211
|
name = "rustls"
|
|
1220
|
-
version = "0.23.
|
|
1212
|
+
version = "0.23.42"
|
|
1221
1213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
-
checksum = "
|
|
1214
|
+
checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
|
|
1223
1215
|
dependencies = [
|
|
1224
1216
|
"once_cell",
|
|
1225
1217
|
"ring",
|
|
@@ -1243,9 +1235,9 @@ dependencies = [
|
|
|
1243
1235
|
|
|
1244
1236
|
[[package]]
|
|
1245
1237
|
name = "rustls-pki-types"
|
|
1246
|
-
version = "1.
|
|
1238
|
+
version = "1.15.0"
|
|
1247
1239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1248
|
-
checksum = "
|
|
1240
|
+
checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
|
|
1249
1241
|
dependencies = [
|
|
1250
1242
|
"web-time",
|
|
1251
1243
|
"zeroize",
|
|
@@ -1264,9 +1256,9 @@ dependencies = [
|
|
|
1264
1256
|
|
|
1265
1257
|
[[package]]
|
|
1266
1258
|
name = "rustversion"
|
|
1267
|
-
version = "1.0.
|
|
1259
|
+
version = "1.0.23"
|
|
1268
1260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
-
checksum = "
|
|
1261
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
1270
1262
|
|
|
1271
1263
|
[[package]]
|
|
1272
1264
|
name = "ryu"
|
|
@@ -1304,7 +1296,7 @@ version = "3.7.0"
|
|
|
1304
1296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1305
1297
|
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1306
1298
|
dependencies = [
|
|
1307
|
-
"bitflags 2.13.
|
|
1299
|
+
"bitflags 2.13.1",
|
|
1308
1300
|
"core-foundation",
|
|
1309
1301
|
"core-foundation-sys",
|
|
1310
1302
|
"libc",
|
|
@@ -1329,9 +1321,9 @@ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
|
1329
1321
|
|
|
1330
1322
|
[[package]]
|
|
1331
1323
|
name = "serde"
|
|
1332
|
-
version = "1.0.
|
|
1324
|
+
version = "1.0.229"
|
|
1333
1325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
-
checksum = "
|
|
1326
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
1335
1327
|
dependencies = [
|
|
1336
1328
|
"serde_core",
|
|
1337
1329
|
"serde_derive",
|
|
@@ -1339,22 +1331,22 @@ dependencies = [
|
|
|
1339
1331
|
|
|
1340
1332
|
[[package]]
|
|
1341
1333
|
name = "serde_core"
|
|
1342
|
-
version = "1.0.
|
|
1334
|
+
version = "1.0.229"
|
|
1343
1335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1344
|
-
checksum = "
|
|
1336
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
1345
1337
|
dependencies = [
|
|
1346
1338
|
"serde_derive",
|
|
1347
1339
|
]
|
|
1348
1340
|
|
|
1349
1341
|
[[package]]
|
|
1350
1342
|
name = "serde_derive"
|
|
1351
|
-
version = "1.0.
|
|
1343
|
+
version = "1.0.229"
|
|
1352
1344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1353
|
-
checksum = "
|
|
1345
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
1354
1346
|
dependencies = [
|
|
1355
1347
|
"proc-macro2",
|
|
1356
1348
|
"quote",
|
|
1357
|
-
"syn
|
|
1349
|
+
"syn 3.0.0",
|
|
1358
1350
|
]
|
|
1359
1351
|
|
|
1360
1352
|
[[package]]
|
|
@@ -1372,13 +1364,13 @@ dependencies = [
|
|
|
1372
1364
|
|
|
1373
1365
|
[[package]]
|
|
1374
1366
|
name = "serde_repr"
|
|
1375
|
-
version = "0.1.
|
|
1367
|
+
version = "0.1.21"
|
|
1376
1368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1377
|
-
checksum = "
|
|
1369
|
+
checksum = "8d3b1629de253c70a0508c3899572da79ca359fdab27c7920ff00406df418906"
|
|
1378
1370
|
dependencies = [
|
|
1379
1371
|
"proc-macro2",
|
|
1380
1372
|
"quote",
|
|
1381
|
-
"syn
|
|
1373
|
+
"syn 3.0.0",
|
|
1382
1374
|
]
|
|
1383
1375
|
|
|
1384
1376
|
[[package]]
|
|
@@ -1400,7 +1392,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1400
1392
|
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1401
1393
|
dependencies = [
|
|
1402
1394
|
"cfg-if",
|
|
1403
|
-
"cpufeatures",
|
|
1395
|
+
"cpufeatures 0.2.17",
|
|
1404
1396
|
"digest",
|
|
1405
1397
|
]
|
|
1406
1398
|
|
|
@@ -1445,9 +1437,9 @@ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
|
1445
1437
|
|
|
1446
1438
|
[[package]]
|
|
1447
1439
|
name = "smbcloud-auth-sdk"
|
|
1448
|
-
version = "0.4.
|
|
1440
|
+
version = "0.4.9"
|
|
1449
1441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1450
|
-
checksum = "
|
|
1442
|
+
checksum = "1b3fd96960be06b8f6cbbefbc69292b9cc20bfc5c3d1f5dbcba5b49631bce1dc"
|
|
1451
1443
|
dependencies = [
|
|
1452
1444
|
"base64",
|
|
1453
1445
|
"reqwest",
|
|
@@ -1462,9 +1454,9 @@ dependencies = [
|
|
|
1462
1454
|
|
|
1463
1455
|
[[package]]
|
|
1464
1456
|
name = "smbcloud-model"
|
|
1465
|
-
version = "0.4.
|
|
1457
|
+
version = "0.4.9"
|
|
1466
1458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
-
checksum = "
|
|
1459
|
+
checksum = "d8309cf17d429115d32165921c4f1fbbb0700e7d60f1bccd73f04f24e24cd837"
|
|
1468
1460
|
dependencies = [
|
|
1469
1461
|
"chrono",
|
|
1470
1462
|
"log",
|
|
@@ -1480,11 +1472,11 @@ dependencies = [
|
|
|
1480
1472
|
|
|
1481
1473
|
[[package]]
|
|
1482
1474
|
name = "smbcloud-network"
|
|
1483
|
-
version = "0.4.
|
|
1475
|
+
version = "0.4.9"
|
|
1484
1476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
-
checksum = "
|
|
1477
|
+
checksum = "9955a28b5ae5284ad0250d41f67b10ee1486c932ccdc152bfe9993345df7778e"
|
|
1486
1478
|
dependencies = [
|
|
1487
|
-
"clap 4.6.
|
|
1479
|
+
"clap 4.6.2",
|
|
1488
1480
|
"log",
|
|
1489
1481
|
"reqwest",
|
|
1490
1482
|
"serde",
|
|
@@ -1495,9 +1487,9 @@ dependencies = [
|
|
|
1495
1487
|
|
|
1496
1488
|
[[package]]
|
|
1497
1489
|
name = "socket2"
|
|
1498
|
-
version = "0.6.
|
|
1490
|
+
version = "0.6.5"
|
|
1499
1491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
-
checksum = "
|
|
1492
|
+
checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
|
|
1501
1493
|
dependencies = [
|
|
1502
1494
|
"libc",
|
|
1503
1495
|
"windows-sys 0.61.2",
|
|
@@ -1602,7 +1594,7 @@ dependencies = [
|
|
|
1602
1594
|
"heck 0.5.0",
|
|
1603
1595
|
"proc-macro2",
|
|
1604
1596
|
"quote",
|
|
1605
|
-
"syn 2.0.
|
|
1597
|
+
"syn 2.0.119",
|
|
1606
1598
|
]
|
|
1607
1599
|
|
|
1608
1600
|
[[package]]
|
|
@@ -1624,9 +1616,20 @@ dependencies = [
|
|
|
1624
1616
|
|
|
1625
1617
|
[[package]]
|
|
1626
1618
|
name = "syn"
|
|
1627
|
-
version = "2.0.
|
|
1619
|
+
version = "2.0.119"
|
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
1622
|
+
dependencies = [
|
|
1623
|
+
"proc-macro2",
|
|
1624
|
+
"quote",
|
|
1625
|
+
"unicode-ident",
|
|
1626
|
+
]
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "syn"
|
|
1630
|
+
version = "3.0.0"
|
|
1628
1631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
-
checksum = "
|
|
1632
|
+
checksum = "f2fac314a64dc9a36e61a9eb4261a5e9bbfbc922b27e518af97bc32b926cf967"
|
|
1630
1633
|
dependencies = [
|
|
1631
1634
|
"proc-macro2",
|
|
1632
1635
|
"quote",
|
|
@@ -1650,7 +1653,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
1650
1653
|
dependencies = [
|
|
1651
1654
|
"proc-macro2",
|
|
1652
1655
|
"quote",
|
|
1653
|
-
"syn 2.0.
|
|
1656
|
+
"syn 2.0.119",
|
|
1654
1657
|
]
|
|
1655
1658
|
|
|
1656
1659
|
[[package]]
|
|
@@ -1664,29 +1667,29 @@ dependencies = [
|
|
|
1664
1667
|
|
|
1665
1668
|
[[package]]
|
|
1666
1669
|
name = "thiserror"
|
|
1667
|
-
version = "2.0.
|
|
1670
|
+
version = "2.0.19"
|
|
1668
1671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
-
checksum = "
|
|
1672
|
+
checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
1670
1673
|
dependencies = [
|
|
1671
1674
|
"thiserror-impl",
|
|
1672
1675
|
]
|
|
1673
1676
|
|
|
1674
1677
|
[[package]]
|
|
1675
1678
|
name = "thiserror-impl"
|
|
1676
|
-
version = "2.0.
|
|
1679
|
+
version = "2.0.19"
|
|
1677
1680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
-
checksum = "
|
|
1681
|
+
checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
1679
1682
|
dependencies = [
|
|
1680
1683
|
"proc-macro2",
|
|
1681
1684
|
"quote",
|
|
1682
|
-
"syn
|
|
1685
|
+
"syn 3.0.0",
|
|
1683
1686
|
]
|
|
1684
1687
|
|
|
1685
1688
|
[[package]]
|
|
1686
1689
|
name = "thread_local"
|
|
1687
|
-
version = "1.1.
|
|
1690
|
+
version = "1.1.10"
|
|
1688
1691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
-
checksum = "
|
|
1692
|
+
checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
|
|
1690
1693
|
dependencies = [
|
|
1691
1694
|
"cfg-if",
|
|
1692
1695
|
]
|
|
@@ -1703,9 +1706,9 @@ dependencies = [
|
|
|
1703
1706
|
|
|
1704
1707
|
[[package]]
|
|
1705
1708
|
name = "tinyvec"
|
|
1706
|
-
version = "1.
|
|
1709
|
+
version = "1.12.0"
|
|
1707
1710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
-
checksum = "
|
|
1711
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
1709
1712
|
dependencies = [
|
|
1710
1713
|
"tinyvec_macros",
|
|
1711
1714
|
]
|
|
@@ -1718,9 +1721,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
1718
1721
|
|
|
1719
1722
|
[[package]]
|
|
1720
1723
|
name = "tokio"
|
|
1721
|
-
version = "1.
|
|
1724
|
+
version = "1.53.0"
|
|
1722
1725
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1723
|
-
checksum = "
|
|
1726
|
+
checksum = "d988bcd52dbe076d3d46903332f58c912b87a2c49b1428419a5845154762ffee"
|
|
1724
1727
|
dependencies = [
|
|
1725
1728
|
"bytes",
|
|
1726
1729
|
"libc",
|
|
@@ -1761,7 +1764,7 @@ version = "0.6.11"
|
|
|
1761
1764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
1765
|
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
1763
1766
|
dependencies = [
|
|
1764
|
-
"bitflags 2.13.
|
|
1767
|
+
"bitflags 2.13.1",
|
|
1765
1768
|
"bytes",
|
|
1766
1769
|
"futures-util",
|
|
1767
1770
|
"http",
|
|
@@ -1804,7 +1807,7 @@ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
|
1804
1807
|
dependencies = [
|
|
1805
1808
|
"proc-macro2",
|
|
1806
1809
|
"quote",
|
|
1807
|
-
"syn 2.0.
|
|
1810
|
+
"syn 2.0.119",
|
|
1808
1811
|
]
|
|
1809
1812
|
|
|
1810
1813
|
[[package]]
|
|
@@ -1863,7 +1866,7 @@ dependencies = [
|
|
|
1863
1866
|
"quote",
|
|
1864
1867
|
"state",
|
|
1865
1868
|
"structopt",
|
|
1866
|
-
"syn 2.0.
|
|
1869
|
+
"syn 2.0.119",
|
|
1867
1870
|
"tsync-macro",
|
|
1868
1871
|
"walkdir",
|
|
1869
1872
|
]
|
|
@@ -1936,9 +1939,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
1936
1939
|
|
|
1937
1940
|
[[package]]
|
|
1938
1941
|
name = "uuid"
|
|
1939
|
-
version = "1.
|
|
1942
|
+
version = "1.24.0"
|
|
1940
1943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1941
|
-
checksum = "
|
|
1944
|
+
checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
|
|
1942
1945
|
dependencies = [
|
|
1943
1946
|
"getrandom 0.4.3",
|
|
1944
1947
|
"js-sys",
|
|
@@ -1988,15 +1991,6 @@ version = "0.11.1+wasi-snapshot-preview1"
|
|
|
1988
1991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1989
1992
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1990
1993
|
|
|
1991
|
-
[[package]]
|
|
1992
|
-
name = "wasip2"
|
|
1993
|
-
version = "1.0.4+wasi-0.2.12"
|
|
1994
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1995
|
-
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
1996
|
-
dependencies = [
|
|
1997
|
-
"wit-bindgen",
|
|
1998
|
-
]
|
|
1999
|
-
|
|
2000
1994
|
[[package]]
|
|
2001
1995
|
name = "wasm-bindgen"
|
|
2002
1996
|
version = "0.2.126"
|
|
@@ -2039,7 +2033,7 @@ dependencies = [
|
|
|
2039
2033
|
"bumpalo",
|
|
2040
2034
|
"proc-macro2",
|
|
2041
2035
|
"quote",
|
|
2042
|
-
"syn 2.0.
|
|
2036
|
+
"syn 2.0.119",
|
|
2043
2037
|
"wasm-bindgen-shared",
|
|
2044
2038
|
]
|
|
2045
2039
|
|
|
@@ -2133,7 +2127,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
|
2133
2127
|
dependencies = [
|
|
2134
2128
|
"proc-macro2",
|
|
2135
2129
|
"quote",
|
|
2136
|
-
"syn 2.0.
|
|
2130
|
+
"syn 2.0.119",
|
|
2137
2131
|
]
|
|
2138
2132
|
|
|
2139
2133
|
[[package]]
|
|
@@ -2144,7 +2138,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
|
2144
2138
|
dependencies = [
|
|
2145
2139
|
"proc-macro2",
|
|
2146
2140
|
"quote",
|
|
2147
|
-
"syn 2.0.
|
|
2141
|
+
"syn 2.0.119",
|
|
2148
2142
|
]
|
|
2149
2143
|
|
|
2150
2144
|
[[package]]
|
|
@@ -2180,15 +2174,6 @@ dependencies = [
|
|
|
2180
2174
|
"windows-targets 0.52.6",
|
|
2181
2175
|
]
|
|
2182
2176
|
|
|
2183
|
-
[[package]]
|
|
2184
|
-
name = "windows-sys"
|
|
2185
|
-
version = "0.60.2"
|
|
2186
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2187
|
-
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2188
|
-
dependencies = [
|
|
2189
|
-
"windows-targets 0.53.5",
|
|
2190
|
-
]
|
|
2191
|
-
|
|
2192
2177
|
[[package]]
|
|
2193
2178
|
name = "windows-sys"
|
|
2194
2179
|
version = "0.61.2"
|
|
@@ -2222,30 +2207,13 @@ dependencies = [
|
|
|
2222
2207
|
"windows_aarch64_gnullvm 0.52.6",
|
|
2223
2208
|
"windows_aarch64_msvc 0.52.6",
|
|
2224
2209
|
"windows_i686_gnu 0.52.6",
|
|
2225
|
-
"windows_i686_gnullvm
|
|
2210
|
+
"windows_i686_gnullvm",
|
|
2226
2211
|
"windows_i686_msvc 0.52.6",
|
|
2227
2212
|
"windows_x86_64_gnu 0.52.6",
|
|
2228
2213
|
"windows_x86_64_gnullvm 0.52.6",
|
|
2229
2214
|
"windows_x86_64_msvc 0.52.6",
|
|
2230
2215
|
]
|
|
2231
2216
|
|
|
2232
|
-
[[package]]
|
|
2233
|
-
name = "windows-targets"
|
|
2234
|
-
version = "0.53.5"
|
|
2235
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2236
|
-
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
2237
|
-
dependencies = [
|
|
2238
|
-
"windows-link",
|
|
2239
|
-
"windows_aarch64_gnullvm 0.53.1",
|
|
2240
|
-
"windows_aarch64_msvc 0.53.1",
|
|
2241
|
-
"windows_i686_gnu 0.53.1",
|
|
2242
|
-
"windows_i686_gnullvm 0.53.1",
|
|
2243
|
-
"windows_i686_msvc 0.53.1",
|
|
2244
|
-
"windows_x86_64_gnu 0.53.1",
|
|
2245
|
-
"windows_x86_64_gnullvm 0.53.1",
|
|
2246
|
-
"windows_x86_64_msvc 0.53.1",
|
|
2247
|
-
]
|
|
2248
|
-
|
|
2249
2217
|
[[package]]
|
|
2250
2218
|
name = "windows_aarch64_gnullvm"
|
|
2251
2219
|
version = "0.48.5"
|
|
@@ -2258,12 +2226,6 @@ version = "0.52.6"
|
|
|
2258
2226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2259
2227
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2260
2228
|
|
|
2261
|
-
[[package]]
|
|
2262
|
-
name = "windows_aarch64_gnullvm"
|
|
2263
|
-
version = "0.53.1"
|
|
2264
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2265
|
-
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2266
|
-
|
|
2267
2229
|
[[package]]
|
|
2268
2230
|
name = "windows_aarch64_msvc"
|
|
2269
2231
|
version = "0.48.5"
|
|
@@ -2276,12 +2238,6 @@ version = "0.52.6"
|
|
|
2276
2238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2277
2239
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2278
2240
|
|
|
2279
|
-
[[package]]
|
|
2280
|
-
name = "windows_aarch64_msvc"
|
|
2281
|
-
version = "0.53.1"
|
|
2282
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2283
|
-
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2284
|
-
|
|
2285
2241
|
[[package]]
|
|
2286
2242
|
name = "windows_i686_gnu"
|
|
2287
2243
|
version = "0.48.5"
|
|
@@ -2294,24 +2250,12 @@ version = "0.52.6"
|
|
|
2294
2250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2295
2251
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2296
2252
|
|
|
2297
|
-
[[package]]
|
|
2298
|
-
name = "windows_i686_gnu"
|
|
2299
|
-
version = "0.53.1"
|
|
2300
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2301
|
-
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2302
|
-
|
|
2303
2253
|
[[package]]
|
|
2304
2254
|
name = "windows_i686_gnullvm"
|
|
2305
2255
|
version = "0.52.6"
|
|
2306
2256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2307
2257
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2308
2258
|
|
|
2309
|
-
[[package]]
|
|
2310
|
-
name = "windows_i686_gnullvm"
|
|
2311
|
-
version = "0.53.1"
|
|
2312
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2313
|
-
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2314
|
-
|
|
2315
2259
|
[[package]]
|
|
2316
2260
|
name = "windows_i686_msvc"
|
|
2317
2261
|
version = "0.48.5"
|
|
@@ -2324,12 +2268,6 @@ version = "0.52.6"
|
|
|
2324
2268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2325
2269
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2326
2270
|
|
|
2327
|
-
[[package]]
|
|
2328
|
-
name = "windows_i686_msvc"
|
|
2329
|
-
version = "0.53.1"
|
|
2330
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
-
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2332
|
-
|
|
2333
2271
|
[[package]]
|
|
2334
2272
|
name = "windows_x86_64_gnu"
|
|
2335
2273
|
version = "0.48.5"
|
|
@@ -2342,12 +2280,6 @@ version = "0.52.6"
|
|
|
2342
2280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2343
2281
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2344
2282
|
|
|
2345
|
-
[[package]]
|
|
2346
|
-
name = "windows_x86_64_gnu"
|
|
2347
|
-
version = "0.53.1"
|
|
2348
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2349
|
-
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
2350
|
-
|
|
2351
2283
|
[[package]]
|
|
2352
2284
|
name = "windows_x86_64_gnullvm"
|
|
2353
2285
|
version = "0.48.5"
|
|
@@ -2360,12 +2292,6 @@ version = "0.52.6"
|
|
|
2360
2292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2361
2293
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2362
2294
|
|
|
2363
|
-
[[package]]
|
|
2364
|
-
name = "windows_x86_64_gnullvm"
|
|
2365
|
-
version = "0.53.1"
|
|
2366
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2367
|
-
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
2368
|
-
|
|
2369
2295
|
[[package]]
|
|
2370
2296
|
name = "windows_x86_64_msvc"
|
|
2371
2297
|
version = "0.48.5"
|
|
@@ -2378,18 +2304,6 @@ version = "0.52.6"
|
|
|
2378
2304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2379
2305
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2380
2306
|
|
|
2381
|
-
[[package]]
|
|
2382
|
-
name = "windows_x86_64_msvc"
|
|
2383
|
-
version = "0.53.1"
|
|
2384
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
-
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2386
|
-
|
|
2387
|
-
[[package]]
|
|
2388
|
-
name = "wit-bindgen"
|
|
2389
|
-
version = "0.57.1"
|
|
2390
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2391
|
-
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
2392
|
-
|
|
2393
2307
|
[[package]]
|
|
2394
2308
|
name = "writeable"
|
|
2395
2309
|
version = "0.6.3"
|
|
@@ -2415,30 +2329,10 @@ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
|
2415
2329
|
dependencies = [
|
|
2416
2330
|
"proc-macro2",
|
|
2417
2331
|
"quote",
|
|
2418
|
-
"syn 2.0.
|
|
2332
|
+
"syn 2.0.119",
|
|
2419
2333
|
"synstructure",
|
|
2420
2334
|
]
|
|
2421
2335
|
|
|
2422
|
-
[[package]]
|
|
2423
|
-
name = "zerocopy"
|
|
2424
|
-
version = "0.8.52"
|
|
2425
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2426
|
-
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
2427
|
-
dependencies = [
|
|
2428
|
-
"zerocopy-derive",
|
|
2429
|
-
]
|
|
2430
|
-
|
|
2431
|
-
[[package]]
|
|
2432
|
-
name = "zerocopy-derive"
|
|
2433
|
-
version = "0.8.52"
|
|
2434
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2435
|
-
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
2436
|
-
dependencies = [
|
|
2437
|
-
"proc-macro2",
|
|
2438
|
-
"quote",
|
|
2439
|
-
"syn 2.0.118",
|
|
2440
|
-
]
|
|
2441
|
-
|
|
2442
2336
|
[[package]]
|
|
2443
2337
|
name = "zerofrom"
|
|
2444
2338
|
version = "0.1.8"
|
|
@@ -2456,7 +2350,7 @@ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
|
2456
2350
|
dependencies = [
|
|
2457
2351
|
"proc-macro2",
|
|
2458
2352
|
"quote",
|
|
2459
|
-
"syn 2.0.
|
|
2353
|
+
"syn 2.0.119",
|
|
2460
2354
|
"synstructure",
|
|
2461
2355
|
]
|
|
2462
2356
|
|
|
@@ -2496,11 +2390,11 @@ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
|
2496
2390
|
dependencies = [
|
|
2497
2391
|
"proc-macro2",
|
|
2498
2392
|
"quote",
|
|
2499
|
-
"syn 2.0.
|
|
2393
|
+
"syn 2.0.119",
|
|
2500
2394
|
]
|
|
2501
2395
|
|
|
2502
2396
|
[[package]]
|
|
2503
2397
|
name = "zmij"
|
|
2504
|
-
version = "1.0.
|
|
2398
|
+
version = "1.0.23"
|
|
2505
2399
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2506
|
-
checksum = "
|
|
2400
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|
data/README.md
CHANGED
data/Rakefile
CHANGED
|
@@ -11,4 +11,22 @@ RbSys::ExtensionTask.new('auth', GEMSPEC) do |ext|
|
|
|
11
11
|
ext.lib_dir = 'lib/auth'
|
|
12
12
|
end
|
|
13
13
|
|
|
14
|
+
# macOS: the rb_sys/rake-compiler build emits the bundle as an MH_DYLIB with an
|
|
15
|
+
# empty LC_ID_DYLIB install name (a plain `cargo build` does not). dyld on macOS
|
|
16
|
+
# 15+/Tahoe rejects that with "load command string extends beyond end of load
|
|
17
|
+
# command", so the gem fails to load. Stamp a valid install name onto every
|
|
18
|
+
# bundle the build produces by enhancing the bundle file tasks themselves (which
|
|
19
|
+
# is what `rake native gem` runs, not the top-level `compile`). install_name_tool
|
|
20
|
+
# re-signs ad-hoc, ships on the macOS gem-build runners, and works across archs
|
|
21
|
+
# (cross-built x86_64 bundles too). Idempotent.
|
|
22
|
+
if RbConfig::CONFIG['host_os'] =~ /darwin/
|
|
23
|
+
Rake::Task.tasks.each do |t|
|
|
24
|
+
next unless t.name.end_with?('auth.bundle')
|
|
25
|
+
|
|
26
|
+
t.enhance do
|
|
27
|
+
sh 'install_name_tool', '-id', '@rpath/auth.bundle', t.name if File.exist?(t.name)
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
|
|
14
32
|
task default: :compile
|
data/ext/auth/Cargo.toml
CHANGED
data/ext/auth/extconf.rb
CHANGED
|
@@ -4,3 +4,15 @@ require 'mkmf'
|
|
|
4
4
|
require 'rb_sys/mkmf'
|
|
5
5
|
|
|
6
6
|
create_rust_makefile('auth/auth')
|
|
7
|
+
|
|
8
|
+
# rb-sys (fixup_libnames) appends `install_name_tool -id "" $(DLLIB)` to the
|
|
9
|
+
# generated Makefile, blanking the bundle's LC_ID_DYLIB install name. dyld on
|
|
10
|
+
# macOS 26/27 rejects an empty dylib-ID string ("load command string extends
|
|
11
|
+
# beyond end of load command"), so the extension fails to dlopen. Rewrite that
|
|
12
|
+
# step to stamp a valid @rpath id instead. This covers the `gem install`
|
|
13
|
+
# (extconf) build path; the Rakefile covers `rake native gem` builds.
|
|
14
|
+
if RUBY_PLATFORM.include?('darwin') && File.exist?('Makefile')
|
|
15
|
+
makefile = File.read('Makefile')
|
|
16
|
+
patched = makefile.gsub('install_name_tool -id ""', 'install_name_tool -id "@rpath/auth.bundle"')
|
|
17
|
+
File.write('Makefile', patched) if patched != makefile
|
|
18
|
+
end
|
data/lib/auth/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: smbcloud-auth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Seto Elkahfi
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
10
|
+
date: 2026-07-19 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: json
|