feat: add crate template

This commit is contained in:
Matthias Seitz
2022-09-21 21:38:49 +02:00
parent 978527367f
commit 57a2b2d1d4
5 changed files with 33 additions and 0 deletions

4
Cargo.lock generated
View File

@ -5,3 +5,7 @@ version = 3
[[package]]
name = "reth"
version = "0.1.0"
[[package]]
name = "reth-crate-template"
version = "0.1.0"

View File

@ -3,6 +3,11 @@ name = "reth"
version = "0.1.0"
edition = "2021"
[workspace]
members = [
"crate-template"
]
[dependencies]
[[bin]]

View File

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

View File

@ -0,0 +1,8 @@
#![warn(missing_debug_implementations, 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

@ -1 +1,8 @@
#![warn(missing_debug_implementations, 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>