-
Notifications
You must be signed in to change notification settings - Fork 177
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "ed448"
version = "0.5.0-rc.5"
edition = "2024"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
description = """
Edwards Digital Signature Algorithm (EdDSA) over Curve448 (as specified in
RFC8032) support library providing signature type definitions and PKCS#8
private key decoding/encoding support
"""
documentation = "https://docs.rs/ed448"
homepage = "https://github.com/RustCrypto/signatures/tree/master/ed448"
repository = "https://github.com/RustCrypto/signatures"
readme = "README.md"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "curve448", "ecc", "signature", "signing"]
rust-version = "1.85"
[dependencies]
signature = { version = "3.0.0-rc.10", default-features = false }
# optional dependencies
pkcs8 = { version = "0.11.0-rc.11", optional = true }
serde = { version = "1", optional = true, default-features = false }
serde_bytes = { version = "0.11", optional = true, default-features = false }
zeroize = { version = "1", optional = true, default-features = false }
[dev-dependencies]
hex-literal = "1"
[features]
default = ["alloc"]
alloc = ["pkcs8?/alloc"]
pem = ["alloc", "pkcs8/pem"]
serde_bytes = ["serde", "dep:serde_bytes"]
[package.metadata.docs.rs]
all-features = true