Skip to main content

reth_primitives/
lib.rs

1//! Commonly used types in Reth.
2//!
3//! ## Deprecation Notice
4//!
5//! This crate is deprecated and will be removed in a future release.
6//! Use [`reth-ethereum-primitives`](https://crates.io/crates/reth-ethereum-primitives) and
7//! [`reth-primitives-traits`](https://crates.io/crates/reth-primitives-traits) instead.
8
9#![cfg_attr(
10    not(feature = "__internal"),
11    deprecated(
12        note = "the `reth-primitives` crate is deprecated, use `reth-ethereum-primitives` and `reth-primitives-traits` instead."
13    )
14)]
15#![doc(
16    html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png",
17    html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256",
18    issue_tracker_base_url = "https://github.com/paradigmxyz/reth/issues/"
19)]
20#![cfg_attr(not(feature = "std"), no_std)]