[package]
edition = "2021"
name = "cmpa"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multiprecision arithmetic primitives commonly needed for asymmetric cryptography"
homepage = "https://github.com/nicstange/cmpa-rs"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/nicstange/cmpa-rs"
[features]
default = [
"enable_arch_math_asm",
"zeroize",
]
enable_arch_math_asm = []
zeroize = ["dep:zeroize"]
[lib]
name = "cmpa"
path = "src/lib.rs"
[dependencies.zeroize]
version = "1.8.1"
optional = true
default-features = false