chore: remove crate-template (#2713)

This commit is contained in:
Bjerg
2023-05-17 13:19:00 +02:00
committed by GitHub
parent f84dd7c947
commit cadf702e5d
4 changed files with 0 additions and 19 deletions

View File

@ -43,7 +43,6 @@ members = [
"crates/transaction-pool",
"crates/trie",
]
exclude = ["crate-template"]
default-members = ["bin/reth"]
# Explicitly set the resolver to version 2, which is the default for packages with edition >= 2021

View File

@ -1,9 +0,0 @@
[package]
name = "reth-crate-template"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/paradigmxyz/reth"
readme = "README.md"
[dependencies]

View File

@ -1,8 +0,0 @@
#![warn(missing_docs, unreachable_pub)]
#![deny(unused_must_use, rust_2018_idioms)]
#![doc(test(
no_crate_inject,
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
))]
//! reth crate template

View File

@ -76,7 +76,6 @@ Small utility crates.
- [`interfaces`](../../crates/interfaces): Traits containing common abstractions across the components used in the system. For ease of unit testing, each crate importing the interface is recommended to create mock/in-memory implementations of each trait.
- [`tracing`](../../crates/tracing): A small utility crate to install a uniform [`tracing`][tracing] subscriber
- [`crate-template`](../../crate-template): Template crate to use when instantiating new crates under `crates/`.
[fastrlp]: https://crates.io/crates/fastrlp
[fastrlp-derive]: https://crates.io/crates/fastrlp-derive