File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 112112//!
113113//! ## Crate features/optional dependencies
114114//!
115- //! The crate provides following opt-in Cargo features:
115+ //! This crate provides the following opt-in Cargo features:
116116//!
117117//! * `std` - use standard Rust library, enabled by default.
118118//! * `alloc` - use the `alloc` standard Rust library to provide heap allocations.
119- //! * `rand` - use `rand` library to provide random generator (to e.g. generate keys)
119+ //! * `rand` - use `rand` library to provide random generator (e.g. to generate keys).
120120//! * `rand-std` - use `rand` library with its `std` feature enabled. (Implies `rand`.)
121- //! * `recovery` - enable functions that can compute the public key from signature
122- //! * `lowmemory` - optimize the library for low-memory environments
121+ //! * `recovery` - enable functions that can compute the public key from signature.
122+ //! * `lowmemory` - optimize the library for low-memory environments.
123123//! * `global-context` - enable use of global secp256k1 context. (Implies `std`, `rand-std` and
124124//! `global-context-less-secure`.)
125125//! * `global-context-less-secure` - enables global context and opts-in to lower security.
126- //! * `serde` - implements serialization and deserialization for types in this crate using `serde`
127- //! * `bitcoin_hashes` - enables interaction with the `bitcoin-hashes` crate (e.g. conversions)
126+ //! * `serde` - implements serialization and deserialization for types in this crate using `serde`.
127+ //! * `bitcoin_hashes` - enables interaction with the `bitcoin-hashes` crate (e.g. conversions).
128128
129129// Coding conventions
130130#![ deny( non_upper_case_globals) ]
You can’t perform that action at this time.
0 commit comments