Cargo Features
[dependencies]
p192 = { version = "0.13.0", default-features = false, features = ["std", "alloc", "arithmetic", "digest", "ecdsa", "pem", "pkcs8", "serde", "test-vectors"] }
- default = arithmetic, ecdsa, pem, std
-
These default features are set whenever
p192
is added without
somewhere in the dependency tree.default-features = false - std default = alloc
-
Enables std of elliptic-curve
- alloc std
-
Enables alloc of elliptic-curve
- arithmetic default ecdsa
-
Enables primeorder, arithmetic of elliptic-curve
- digest
-
Enables digest and hazmat of ecdsa
optional dependencies
- ecdsa default = arithmetic
-
Enables signing and verifying of ecdsa
Affects
ecdsa::VerifyingKey
… - pem default = pkcs8
-
Enables pem of elliptic-curve
- pkcs8 pem
-
Enables pkcs8 of elliptic-curve
- serde = serdect
-
Enables serde of elliptic-curve and optional primeorder
- test-vectors = hex-literal
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- ecdsa-core digest? ecdsa
-
Enables ecdsa
Affects
p192::ecdsa
… - hex-literal test-vectors?
- serdect serde?