File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 112
112
//!
113
113
//! ## Crate features/optional dependencies
114
114
//!
115
- //! The crate provides following opt-in Cargo features:
115
+ //! This crate provides the following opt-in Cargo features:
116
116
//!
117
117
//! * `std` - use standard Rust library, enabled by default.
118
118
//! * `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).
120
120
//! * `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.
123
123
//! * `global-context` - enable use of global secp256k1 context. (Implies `std`, `rand-std` and
124
124
//! `global-context-less-secure`.)
125
125
//! * `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).
128
128
129
129
// Coding conventions
130
130
#![ deny( non_upper_case_globals) ]
You can’t perform that action at this time.
0 commit comments