Files
reth/crates/rlp/src/lib.rs
Léo Vincent 0096739dbb doc: add reth logo to docs (#3317)
Co-authored-by: Oliver Nordbjerg <hi@notbjerg.me>
2023-06-26 15:41:11 +00:00

44 lines
1.2 KiB
Rust

#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png",
html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256",
issue_tracker_base_url = "https://github.com/paradigmxzy/reth/issues/"
)]
#![warn(unreachable_pub)]
#![deny(unused_must_use)]
#![doc(test(
no_crate_inject,
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
))]
#![cfg_attr(not(feature = "std"), no_std)]
//! A fast RLP implementation.
//!
//! ## Feature Flags
//!
//! This crate works on `#[no_std]` targets if `std` is not enabled.
//!
//! - `derive`: Enables derive macros.
//! - `std`: Uses the Rust standard library.
#[cfg(feature = "alloc")]
extern crate alloc;
mod decode;
mod encode;
mod types;
pub use bytes::BufMut;
pub use decode::{Decodable, DecodeError, Rlp};
pub use encode::{
const_add, encode_fixed_size, encode_iter, encode_list, length_of_length, list_length,
Encodable, MaxEncodedLen, MaxEncodedLenAssoc,
};
pub use types::*;
#[cfg(feature = "derive")]
pub use reth_rlp_derive::{
RlpDecodable, RlpDecodableWrapper, RlpEncodable, RlpEncodableWrapper, RlpMaxEncodedLen,
};