From 71d7e870d7d928a9f3888cca0be59227d3f809e0 Mon Sep 17 00:00:00 2001 From: Teoh Han Hui Date: Mon, 27 Apr 2026 22:55:15 +0800 Subject: [PATCH] ed: Fix README feature matrix (#900) --- ed25519-dalek/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ed25519-dalek/README.md b/ed25519-dalek/README.md index 0f8801a..ad9801d 100644 --- a/ed25519-dalek/README.md +++ b/ed25519-dalek/README.md @@ -17,7 +17,7 @@ This crate is `#[no_std]` compatible with `default-features = false`. | Feature | Default? | Description | | :--- | :--- | :--- | -| `alloc` | ✓ | When `pkcs8` is enabled, implements `EncodePrivateKey`/`EncodePublicKey` for `SigningKey`/`VerifyingKey`, respectively. | +| `alloc` | | When `pkcs8` is enabled, implements `EncodePrivateKey`/`EncodePublicKey` for `SigningKey`/`VerifyingKey`, respectively. | | `fast` | ✓ | Enables the use of precomputed tables for curve arithmetic. Makes key generation, signing, and verifying faster. | | `zeroize` | ✓ | Implements `Zeroize` and `ZeroizeOnDrop` for `SigningKey` | | `rand_core` | | Enables `SigningKey::generate` |