Cargo Features
[dependencies]
zkplmt = { version = "0.4.5", default-features = false, features = ["std", "test-helpers"] }
- default = std
-
The
std
feature is set by default wheneverzkplmt
is added without
somewhere in the dependency tree.default-features = false - std default = thiserror
-
Enables std of curve25519-dalek ^2.0.0, rand ^0.7, and serde
rand:
Option (enabled by default): without "std" rand uses libcore; this option enables functionality expected to be available on a standard platform.
- test-helpers
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.
- thiserror std
-
Enables thiserror ^1.0.26