An easy-to-host PDS on the ATProtocol, MacOS. Grandma-approved.

chore(crypto): add p256, aes-gcm, multibase, rand_core, base64, zeroize deps

authored by malpercio.dev and committed by

Tangled f4ec617b 2349133b

+14
+5
Cargo.toml
··· 54 54 55 55 # Crypto (crypto) 56 56 # rsky-crypto = "0.2" 57 + p256 = { version = "0.13", features = ["ecdsa"] } 58 + aes-gcm = "0.10" 59 + multibase = "0.9" 60 + rand_core = { version = "0.6", features = ["getrandom"] } 61 + base64 = "0.21" 57 62 58 63 # Testing 59 64 tempfile = "3"
+9
crates/crypto/Cargo.toml
··· 6 6 7 7 # crypto: signing, Shamir secret sharing, DID operations. 8 8 # Depends on rsky-crypto (added when Wave 3 DID/key work begins). 9 + 10 + [dependencies] 11 + p256 = { workspace = true } 12 + aes-gcm = { workspace = true } 13 + multibase = { workspace = true } 14 + rand_core = { workspace = true } 15 + base64 = { workspace = true } 16 + thiserror = { workspace = true } 17 + zeroize = "1"