From e1992c9b3ca4b975bd6f1c93e0f3dba892eb9320 Mon Sep 17 00:00:00 2001 From: "Ian Clarke (aider)" Date: Thu, 12 Dec 2024 12:46:03 -0600 Subject: [PATCH] feat: Add crystals-dilithium for post-quantum signature support --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 46de826..ab8b000 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,8 +13,10 @@ resolver = "2" ciborium = "0.2.2" serde = { version = "1.0.130", features = ["derive"] } -# Cryptography +# Cryptography +# Using both classical (ed25519) and post-quantum (dilithium) signatures ed25519-dalek = { version = "2.1.1", features = ["serde", "rand_core"] } +crystals-dilithium = "1.0.0" blake3 = { version = "1.5.3", features = ["serde"] } x25519-dalek = { version = "2.0.0", features = ["static_secrets"] } curve25519-dalek = "4.1.3"