Merge rust-bitcoin/rust-secp256k1#369: Trivial doc: Warn that serde differs from consensus encoding
52560a9205
Warn that serde differs from consensus encoding (Martin Habovstiak) Pull request description: Addresses https://github.com/rust-bitcoin/rust-bitcoin/pull/756#discussion_r780844146 ACKs for top commit: apoelstra: ACK52560a9205
Tree-SHA512: ee56c13dcb0493318f5b59306d6375adb202a5812c4673f0b9abe71fb809b927a74c3fd61aa20fe28fd2176c67f495214bf4da546380dfe9c83b933b02835fff
This commit is contained in:
commit
6b515755ab
|
@ -22,6 +22,7 @@
|
||||||
//! To minimize dependencies, some functions are feature-gated. To generate
|
//! To minimize dependencies, some functions are feature-gated. To generate
|
||||||
//! random keys or to re-randomize a context object, compile with the "rand"
|
//! random keys or to re-randomize a context object, compile with the "rand"
|
||||||
//! feature. To de/serialize objects with serde, compile with "serde".
|
//! feature. To de/serialize objects with serde, compile with "serde".
|
||||||
|
//! **Important**: `serde` encoding is **not** the same as consensus encoding!
|
||||||
//!
|
//!
|
||||||
//! Where possible, the bindings use the Rust type system to ensure that
|
//! Where possible, the bindings use the Rust type system to ensure that
|
||||||
//! API usage errors are impossible. For example, the library uses context
|
//! API usage errors are impossible. For example, the library uses context
|
||||||
|
@ -124,6 +125,7 @@
|
||||||
//! `global-context-less-secure`.)
|
//! `global-context-less-secure`.)
|
||||||
//! * `global-context-less-secure` - enables global context without extra sidechannel protection.
|
//! * `global-context-less-secure` - enables global context without extra sidechannel protection.
|
||||||
//! * `serde` - implements serialization and deserialization for types in this crate using `serde`.
|
//! * `serde` - implements serialization and deserialization for types in this crate using `serde`.
|
||||||
|
//! **Important**: `serde` encoding is **not** the same as consensus encoding!
|
||||||
//! * `bitcoin_hashes` - enables interaction with the `bitcoin-hashes` crate (e.g. conversions).
|
//! * `bitcoin_hashes` - enables interaction with the `bitcoin-hashes` crate (e.g. conversions).
|
||||||
|
|
||||||
// Coding conventions
|
// Coding conventions
|
||||||
|
|
Loading…
Reference in New Issue