Skip to content

Commit 201a6f6

Browse files
committed
fix(v1_public): remove unnecessary ed25519-dalek dependency
Removes ed25519-dalek from v1_public feature dependencies. The v1.public implementation correctly uses RSA-2048 via the ring crate (non-optional dependency), making ed25519-dalek unnecessary. This dependency caused confusion about the cryptographic implementation and added unnecessary compilation overhead for v1_public users. Closes #70 Closes #53
1 parent 80b77a9 commit 201a6f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ v1_local = ["v1", "local", "core", "aes", "ctr", "chacha20", "hmac", "sha2", "bl
4040
v2_local = ["v2", "local", "core", "blake2", "chacha20poly1305"]
4141
v3_local = ["v3", "local", "core", "aes", "ctr", "hmac", "sha2", "chacha20"]
4242
v4_local = ["v4", "local", "core", "blake2", "chacha20"]
43-
v1_public = ["v1", "public", "core", "ed25519-dalek"]
43+
v1_public = ["v1", "public", "core"]
4444
v2_public = ["v2", "public", "core", "ed25519-dalek", "ring/std"]
4545
v3_public = ["v3", "public", "core", "p384", "sha2"]
4646
v4_public = ["v4", "public", "core", "ed25519-dalek", "ring/std"]

0 commit comments

Comments
 (0)