mirror of
https://github.com/RustCrypto/signatures
synced 2026-06-21 13:45:42 +00:00
6cbef4f168
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
30 lines
630 B
TOML
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" }
|