diff --git a/Cargo.lock b/Cargo.lock index 080489e42..63bdf8eb7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5316,7 +5316,7 @@ dependencies = [ [[package]] name = "reth-libmdbx" -version = "0.1.6" +version = "0.1.0" dependencies = [ "bitflags 1.3.2", "byteorder", @@ -5336,7 +5336,7 @@ dependencies = [ [[package]] name = "reth-mdbx-sys" -version = "0.12.6-0" +version = "0.1.0" dependencies = [ "bindgen", "cc", @@ -5579,7 +5579,7 @@ dependencies = [ [[package]] name = "reth-rlp" -version = "0.1.2" +version = "0.1.0" dependencies = [ "arrayvec", "auto_impl", @@ -5597,7 +5597,7 @@ dependencies = [ [[package]] name = "reth-rlp-derive" -version = "0.1.1" +version = "0.1.0" dependencies = [ "proc-macro2 1.0.60", "quote 1.0.28", diff --git a/Cargo.toml b/Cargo.toml index 286576006..0075efa63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,6 +53,7 @@ default-members = ["bin/reth"] resolver = "2" [workspace.package] +version = "0.1.0" edition = "2021" rust-version = "1.70" # Remember to update .clippy.toml and README.md license = "MIT OR Apache-2.0" diff --git a/bin/reth/Cargo.toml b/bin/reth/Cargo.toml index ddaa59a9a..59a7b2651 100644 --- a/bin/reth/Cargo.toml +++ b/bin/reth/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/blockchain-tree/Cargo.toml b/crates/blockchain-tree/Cargo.toml index a95766ee4..f955fde9e 100644 --- a/crates/blockchain-tree/Cargo.toml +++ b/crates/blockchain-tree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-blockchain-tree" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index c87a36148..ac8084ae1 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-config" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/consensus/auto-seal/Cargo.toml b/crates/consensus/auto-seal/Cargo.toml index d4890b9cc..0805bba21 100644 --- a/crates/consensus/auto-seal/Cargo.toml +++ b/crates/consensus/auto-seal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-auto-seal-consensus" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/consensus/beacon/Cargo.toml b/crates/consensus/beacon/Cargo.toml index 74a2a9094..64845e971 100644 --- a/crates/consensus/beacon/Cargo.toml +++ b/crates/consensus/beacon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-beacon-consensus" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/consensus/common/Cargo.toml b/crates/consensus/common/Cargo.toml index 82023d756..55253ae5e 100644 --- a/crates/consensus/common/Cargo.toml +++ b/crates/consensus/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-consensus-common" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/interfaces/Cargo.toml b/crates/interfaces/Cargo.toml index 8cdcbaabb..b13b0b769 100644 --- a/crates/interfaces/Cargo.toml +++ b/crates/interfaces/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-interfaces" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/metrics/Cargo.toml b/crates/metrics/Cargo.toml index e1e01e8c0..75719a7aa 100644 --- a/crates/metrics/Cargo.toml +++ b/crates/metrics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-metrics" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/metrics/metrics-derive/Cargo.toml b/crates/metrics/metrics-derive/Cargo.toml index ce992b589..c78a48db9 100644 --- a/crates/metrics/metrics-derive/Cargo.toml +++ b/crates/metrics/metrics-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-metrics-derive" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/net/common/Cargo.toml b/crates/net/common/Cargo.toml index 8cfdd2a53..998c9212f 100644 --- a/crates/net/common/Cargo.toml +++ b/crates/net/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-net-common" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/net/discv4/Cargo.toml b/crates/net/discv4/Cargo.toml index 9c80b6384..1775e98eb 100644 --- a/crates/net/discv4/Cargo.toml +++ b/crates/net/discv4/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-discv4" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/net/dns/Cargo.toml b/crates/net/dns/Cargo.toml index da6c70f23..4fe6d4c45 100644 --- a/crates/net/dns/Cargo.toml +++ b/crates/net/dns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-dns-discovery" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/net/downloaders/Cargo.toml b/crates/net/downloaders/Cargo.toml index 6554005db..07942b2ad 100644 --- a/crates/net/downloaders/Cargo.toml +++ b/crates/net/downloaders/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-downloaders" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/net/ecies/Cargo.toml b/crates/net/ecies/Cargo.toml index 1b3421d25..67e146d68 100644 --- a/crates/net/ecies/Cargo.toml +++ b/crates/net/ecies/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-ecies" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/net/eth-wire/Cargo.toml b/crates/net/eth-wire/Cargo.toml index f9acb39ba..c39a527a0 100644 --- a/crates/net/eth-wire/Cargo.toml +++ b/crates/net/eth-wire/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "reth-eth-wire" description = "Implements the eth/64 and eth/65 P2P protocols" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/net/nat/Cargo.toml b/crates/net/nat/Cargo.toml index 7db0e6d99..f0fe8f3e2 100644 --- a/crates/net/nat/Cargo.toml +++ b/crates/net/nat/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-net-nat" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/net/network-api/Cargo.toml b/crates/net/network-api/Cargo.toml index f5fb4e62a..31c93a076 100644 --- a/crates/net/network-api/Cargo.toml +++ b/crates/net/network-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-network-api" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/net/network/Cargo.toml b/crates/net/network/Cargo.toml index 6b90bb35b..e1f29f39b 100644 --- a/crates/net/network/Cargo.toml +++ b/crates/net/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-network" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/payload/basic/Cargo.toml b/crates/payload/basic/Cargo.toml index 4f3c19cea..a2a9f3288 100644 --- a/crates/payload/basic/Cargo.toml +++ b/crates/payload/basic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-basic-payload-builder" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/payload/builder/Cargo.toml b/crates/payload/builder/Cargo.toml index 70e4954fa..b83236fd9 100644 --- a/crates/payload/builder/Cargo.toml +++ b/crates/payload/builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-payload-builder" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 0efed1faa..4661f92bc 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-primitives" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true @@ -12,7 +12,7 @@ description = "Commonly used types in reth." # reth reth-rlp = { workspace = true, features = ["std", "derive", "ethereum-types"] } reth-rlp-derive = { path = "../rlp/rlp-derive" } -reth-codecs = { version = "0.1.0", path = "../storage/codecs" } +reth-codecs = { path = "../storage/codecs" } revm-primitives = { workspace = true, features = ["serde"] } diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 5e3f96734..e80ab708c 100644 --- a/crates/revm/Cargo.toml +++ b/crates/revm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-revm" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/revm/revm-inspectors/Cargo.toml b/crates/revm/revm-inspectors/Cargo.toml index 8e17b60f0..874f41dfc 100644 --- a/crates/revm/revm-inspectors/Cargo.toml +++ b/crates/revm/revm-inspectors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-revm-inspectors" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/revm/revm-primitives/Cargo.toml b/crates/revm/revm-primitives/Cargo.toml index 7ada96d4b..96efb46ff 100644 --- a/crates/revm/revm-primitives/Cargo.toml +++ b/crates/revm/revm-primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-revm-primitives" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/rlp/Cargo.toml b/crates/rlp/Cargo.toml index 8ac894e3f..c7977b494 100644 --- a/crates/rlp/Cargo.toml +++ b/crates/rlp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-rlp" -version = "0.1.2" +version.workspace = true edition.workspace = true rust-version.workspace = true license = "Apache-2.0" @@ -16,7 +16,7 @@ ethnum = { version = "1", default-features = false, optional = true } smol_str = { version = "0.1", default-features = false, optional = true } ethereum-types = { version = "0.14", features = ["codec"], optional = true } revm-primitives = { workspace = true, features = ["serde"] } -reth-rlp-derive = { version = "0.1", path = "./rlp-derive", optional = true } +reth-rlp-derive = { path = "./rlp-derive", optional = true } [dev-dependencies] reth-rlp = { workspace = true, features = [ diff --git a/crates/rlp/rlp-derive/Cargo.toml b/crates/rlp/rlp-derive/Cargo.toml index 1ae76e95a..299cb0993 100644 --- a/crates/rlp/rlp-derive/Cargo.toml +++ b/crates/rlp/rlp-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-rlp-derive" -version = "0.1.1" +version.workspace = true license = "Apache-2.0" edition.workspace = true rust-version.workspace = true diff --git a/crates/rpc/ipc/Cargo.toml b/crates/rpc/ipc/Cargo.toml index 78aef3dc3..7f118f83c 100644 --- a/crates/rpc/ipc/Cargo.toml +++ b/crates/rpc/ipc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-ipc" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/rpc/rpc-api/Cargo.toml b/crates/rpc/rpc-api/Cargo.toml index 63aa8974b..a6dde25c1 100644 --- a/crates/rpc/rpc-api/Cargo.toml +++ b/crates/rpc/rpc-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-rpc-api" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/rpc/rpc-builder/Cargo.toml b/crates/rpc/rpc-builder/Cargo.toml index b318f539f..d0dfab2ca 100644 --- a/crates/rpc/rpc-builder/Cargo.toml +++ b/crates/rpc/rpc-builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-rpc-builder" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/rpc/rpc-engine-api/Cargo.toml b/crates/rpc/rpc-engine-api/Cargo.toml index bd1a4afac..0f417a3a6 100644 --- a/crates/rpc/rpc-engine-api/Cargo.toml +++ b/crates/rpc/rpc-engine-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-rpc-engine-api" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/rpc/rpc-testing-util/Cargo.toml b/crates/rpc/rpc-testing-util/Cargo.toml index c3e5cafd4..7fc6976a8 100644 --- a/crates/rpc/rpc-testing-util/Cargo.toml +++ b/crates/rpc/rpc-testing-util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-rpc-api-testing-util" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/rpc/rpc-types/Cargo.toml b/crates/rpc/rpc-types/Cargo.toml index f92ced2a4..037cf873b 100644 --- a/crates/rpc/rpc-types/Cargo.toml +++ b/crates/rpc/rpc-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-rpc-types" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/rpc/rpc/Cargo.toml b/crates/rpc/rpc/Cargo.toml index 0cf7a4f83..a69810923 100644 --- a/crates/rpc/rpc/Cargo.toml +++ b/crates/rpc/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-rpc" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/staged-sync/Cargo.toml b/crates/staged-sync/Cargo.toml index a32223af1..a88472583 100644 --- a/crates/staged-sync/Cargo.toml +++ b/crates/staged-sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-staged-sync" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/stages/Cargo.toml b/crates/stages/Cargo.toml index e8db9ce29..d60bc3dc2 100644 --- a/crates/stages/Cargo.toml +++ b/crates/stages/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-stages" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/storage/codecs/Cargo.toml b/crates/storage/codecs/Cargo.toml index b5ca60a5d..5b3a9497b 100644 --- a/crates/storage/codecs/Cargo.toml +++ b/crates/storage/codecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-codecs" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true @@ -17,7 +17,7 @@ arbitrary = ["revm-primitives/arbitrary", "dep:arbitrary", "dep:proptest", "dep: [dependencies] bytes = "1.4" -codecs-derive = { version = "0.1.0", path = "./derive", default-features = false } +codecs-derive = { path = "./derive", default-features = false } revm-primitives = { workspace = true, features = ["serde"] } # arbitrary utils diff --git a/crates/storage/codecs/derive/Cargo.toml b/crates/storage/codecs/derive/Cargo.toml index 09f9f1685..a59b26c57 100644 --- a/crates/storage/codecs/derive/Cargo.toml +++ b/crates/storage/codecs/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codecs-derive" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/storage/db/Cargo.toml b/crates/storage/db/Cargo.toml index 51b30ef2f..57370c3fc 100644 --- a/crates/storage/db/Cargo.toml +++ b/crates/storage/db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-db" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/storage/libmdbx-rs/Cargo.toml b/crates/storage/libmdbx-rs/Cargo.toml index 8cfd76232..bac79ec88 100644 --- a/crates/storage/libmdbx-rs/Cargo.toml +++ b/crates/storage/libmdbx-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-libmdbx" -version = "0.1.6" +version.workspace = true edition.workspace = true rust-version.workspace = true license = "Apache-2.0" diff --git a/crates/storage/libmdbx-rs/mdbx-sys/Cargo.toml b/crates/storage/libmdbx-rs/mdbx-sys/Cargo.toml index 00420504c..51e8da178 100644 --- a/crates/storage/libmdbx-rs/mdbx-sys/Cargo.toml +++ b/crates/storage/libmdbx-rs/mdbx-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-mdbx-sys" -version = "0.12.6-0" +version.workspace = true edition.workspace = true rust-version.workspace = true license = "Apache-2.0" diff --git a/crates/storage/provider/Cargo.toml b/crates/storage/provider/Cargo.toml index 9c39874e9..d270c0c2d 100644 --- a/crates/storage/provider/Cargo.toml +++ b/crates/storage/provider/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-provider" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/tasks/Cargo.toml b/crates/tasks/Cargo.toml index d0f5a3206..183224bbd 100644 --- a/crates/tasks/Cargo.toml +++ b/crates/tasks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-tasks" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/tracing/Cargo.toml b/crates/tracing/Cargo.toml index 9e6569ac6..63531a08f 100644 --- a/crates/tracing/Cargo.toml +++ b/crates/tracing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-tracing" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/transaction-pool/Cargo.toml b/crates/transaction-pool/Cargo.toml index 4a9df8126..efc0cda13 100644 --- a/crates/transaction-pool/Cargo.toml +++ b/crates/transaction-pool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-transaction-pool" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/trie/Cargo.toml b/crates/trie/Cargo.toml index d772cffd2..1c9369413 100644 --- a/crates/trie/Cargo.toml +++ b/crates/trie/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reth-trie" -version = "0.1.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/testing/ef-tests/Cargo.toml b/testing/ef-tests/Cargo.toml index 4cabdf2ed..109fefd45 100644 --- a/testing/ef-tests/Cargo.toml +++ b/testing/ef-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ef-tests" -version = "0.1.0" +version.workspace = true description = "EF testing support for reth." edition.workspace = true rust-version.workspace = true