Files
RustCrypto-signatures/Cargo.toml
T
Tony Arcieri 6cbef4f168 dsa: handle NonZero/Odd conversions on BoxedUint internally (#998)
Makes `BoxedUint` the one unsigned integer type in the public API,
converting to `NonZero<BoxedUint>` and `Odd<BoxedUint>` as needed.

This makes the API simpler to use for end-users, with fewer types for
them to manage.

Closes #987
2025-06-16 12:02:57 -06:00

30 lines
630 B
TOML

[workspace]
resolver = "2"
members = [
"dsa",
"ecdsa",
"ed448",
"ed25519",
"lms",
"ml-dsa",
"rfc6979",
"slh-dsa",
]
[profile.dev]
opt-level = 2
[patch.crates-io]
elliptic-curve = { git = "https://github.com/RustCrypto/traits.git" }
# A global patch crates-io block is used to avoid duplicate dependencies
# when pulling a member crate through git
dsa = { path = "./dsa" }
ecdsa = { path = "./ecdsa" }
ed448 = { path = "./ed448" }
ed25519 = { path = "./ed25519" }
lms-signature = { path = "./lms" }
ml-dsa = { path = "./ml-dsa" }
rfc6979 = { path = "./rfc6979" }
slh-dsa = { path = "./slh-dsa" }