From 166f1418f7545a94c6d035b02dd4681273cd1070 Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Sun, 19 Apr 2026 09:37:56 -0400 Subject: [PATCH] chore(core): add deps for typed-item rewrite zeroize, zxcvbn, bip39, unicode-normalization, chrono, hex, url, getrandom. Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/idfoto-core/Cargo.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/crates/idfoto-core/Cargo.toml b/crates/idfoto-core/Cargo.toml index 1ef5ad5..e7cff87 100644 --- a/crates/idfoto-core/Cargo.toml +++ b/crates/idfoto-core/Cargo.toml @@ -15,4 +15,15 @@ sha2 = "0.10" ed25519-dalek = { version = "2", features = ["rand_core"] } image = { version = "0.25", default-features = false, features = ["jpeg"] } +# Typed-item additions +zeroize = { version = "1", features = ["zeroize_derive"] } +zxcvbn = { version = "3", default-features = false } +bip39 = { version = "2", default-features = false, features = ["std"] } +unicode-normalization = "0.1" +chrono = { version = "0.4", default-features = false, features = ["serde", "clock"] } +hex = "0.4" +url = { version = "2", features = ["serde"] } +getrandom = "0.2" + [dev-dependencies] +hex = "0.4"