don't
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: move `rand` to workspace dependencies and downgrade to v0.9.2

Signed-off-by: tjh <x@tjh.dev>

tjh f1d76429 6017a561

+10 -47
+6 -44
Cargo.lock
··· 367 367 checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 368 368 369 369 [[package]] 370 - name = "chacha20" 371 - version = "0.10.0" 372 - source = "registry+https://github.com/rust-lang/crates.io-index" 373 - checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601" 374 - dependencies = [ 375 - "cfg-if", 376 - "cpufeatures 0.3.0", 377 - "rand_core 0.10.0", 378 - ] 379 - 380 - [[package]] 381 370 name = "cipher" 382 371 version = "0.4.4" 383 372 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 530 541 ] 531 542 532 543 [[package]] 533 - name = "cpufeatures" 534 - version = "0.3.0" 535 - source = "registry+https://github.com/rust-lang/crates.io-index" 536 - checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" 537 - dependencies = [ 538 - "libc", 539 - ] 540 - 541 - [[package]] 542 544 name = "crc" 543 545 version = "3.4.0" 544 546 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 631 651 checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" 632 652 dependencies = [ 633 653 "cfg-if", 634 - "cpufeatures 0.2.17", 654 + "cpufeatures", 635 655 "curve25519-dalek-derive", 636 656 "digest", 637 657 "fiat-crypto", ··· 1145 1165 "cfg-if", 1146 1166 "libc", 1147 1167 "r-efi", 1148 - "rand_core 0.10.0", 1149 1168 "wasip2", 1150 1169 "wasip3", 1151 1170 ] ··· 2048 2069 "gordian-identity", 2049 2070 "gordian-types", 2050 2071 "multibase", 2051 - "rand 0.10.0", 2072 + "rand 0.9.2", 2052 2073 "reqwest", 2053 2074 "serde", 2054 2075 "serde_json", ··· 2071 2092 "gordian-identity", 2072 2093 "gordian-types", 2073 2094 "owo-colors", 2074 - "rand 0.10.0", 2095 + "rand 0.9.2", 2075 2096 "reqwest", 2076 2097 "serde", 2077 2098 "serde_json", ··· 2152 2173 "mimetype-detector", 2153 2174 "moka", 2154 2175 "multibase", 2155 - "rand 0.10.0", 2176 + "rand 0.9.2", 2156 2177 "rayon", 2157 2178 "reqwest", 2158 2179 "rustc-hash", ··· 3468 3489 ] 3469 3490 3470 3491 [[package]] 3471 - name = "rand" 3472 - version = "0.10.0" 3473 - source = "registry+https://github.com/rust-lang/crates.io-index" 3474 - checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8" 3475 - dependencies = [ 3476 - "chacha20", 3477 - "getrandom 0.4.1", 3478 - "rand_core 0.10.0", 3479 - ] 3480 - 3481 - [[package]] 3482 3492 name = "rand_chacha" 3483 3493 version = "0.3.1" 3484 3494 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3504 3536 dependencies = [ 3505 3537 "getrandom 0.3.4", 3506 3538 ] 3507 - 3508 - [[package]] 3509 - name = "rand_core" 3510 - version = "0.10.0" 3511 - source = "registry+https://github.com/rust-lang/crates.io-index" 3512 - checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba" 3513 3539 3514 3540 [[package]] 3515 3541 name = "rayon" ··· 3946 3984 checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 3947 3985 dependencies = [ 3948 3986 "cfg-if", 3949 - "cpufeatures 0.2.17", 3987 + "cpufeatures", 3950 3988 "digest", 3951 3989 ] 3952 3990 ··· 3967 4005 checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 3968 4006 dependencies = [ 3969 4007 "cfg-if", 3970 - "cpufeatures 0.2.17", 4008 + "cpufeatures", 3971 4009 "digest", 3972 4010 ] 3973 4011
+1
Cargo.toml
··· 34 34 data-encoding = "2.9.0" 35 35 exn = "0.3.0" 36 36 gix = { version = "0.78.0", features = ["max-performance"] } 37 + rand = "0.9.2" 37 38 reqwest = { version = "0.13.1", features = ["form", "json"] } 38 39 serde = { version = "1.0.226", features = ["derive"] } 39 40 serde_json = { version = "1.0.145", features = ["raw_value"] }
+1 -1
crates/gordian-auth/Cargo.toml
··· 13 13 14 14 aws-lc-rs.workspace = true 15 15 data-encoding.workspace = true 16 + rand = { workspace = true } 16 17 reqwest = { workspace = true } 17 18 serde = { workspace = true } 18 19 serde_json = { workspace = true, features = ["preserve_order"] } ··· 24 23 25 24 exn = "0.3.0" 26 25 multibase = "0.9.1" 27 - rand = "0.10.0"
+1 -1
crates/gordian-cred/Cargo.toml
··· 15 15 16 16 data-encoding.workspace = true 17 17 exn.workspace = true 18 + rand.workspace = true 18 19 reqwest.workspace = true 19 20 serde.workspace = true 20 21 serde_json.workspace = true ··· 25 24 clap_complete = "4.5.66" 26 25 directories = "6.0.0" 27 26 owo-colors = { version = "4.2.3", features = ["supports-colors"] } 28 - rand = "0.10.0" 29 27 ssh-agent-client-rs = "1.1.2" 30 28 ssh-key = "0.6.7" 31 29 time = { version = "0.3.44", features = ["formatting"] }
+1 -1
crates/gordian-knot/Cargo.toml
··· 21 21 data-encoding.workspace = true 22 22 exn.workspace = true 23 23 gix.workspace = true 24 + rand.workspace = true 24 25 reqwest.workspace = true 25 26 serde.workspace = true 26 27 serde_json.workspace = true ··· 39 38 maud = { version = "0.27.0", features = ["axum"] } 40 39 mimetype-detector = "0.3.4" 41 40 moka = { version = "0.12.12", features = ["future"] } 42 - rand = "0.10.0" 43 41 rayon = "1.11.0" 44 42 rustc-hash = "2.1.1" 45 43 sqlx = { version = "0.8.6", features = ["runtime-tokio", "sqlite", "time", "json", "macros", "derive"] }