Skip to content

Commit

Permalink
feat(primitives): add new crate symphony-primitives
Browse files Browse the repository at this point in the history
  • Loading branch information
dereksione committed Jun 29, 2023
1 parent bc033b6 commit df182aa
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ members = [
"crates/transaction-pool",
"crates/trie",
"testing/ef-tests",
"crates/symphony-primitives"
]
default-members = ["bin/reth"]

Expand All @@ -58,7 +59,7 @@ edition = "2021"
rust-version = "1.70" # Remember to update .clippy.toml and README.md
license = "MIT OR Apache-2.0"
homepage = "https://paradigmxyz.github.io/reth"
repository = "https://github.com/paradigmxyz/reth"
repository = "https://github.com/astriaorg/reth"

# Like release, but with full debug symbols. Useful for e.g. `perf`.
[profile.debug-fast]
Expand Down Expand Up @@ -92,6 +93,7 @@ reth-payload-builder = { path = "./crates/payload/builder" }
reth-transaction-pool = { path = "./crates/transaction-pool" }
reth-tasks = { path = "./crates/tasks" }
reth-network-api = { path = "./crates/net/network-api" }
symphony-primitives = { path = "./crates/symphony-primitives"}

## eth
ethers-core = { version = "2.0.7", default-features = false }
Expand Down
17 changes: 17 additions & 0 deletions crates/symphony-primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "symphony-primitives"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Symphony specific primitive data types."

# [dependencies]

# [dev-dependencies]

# [features]

# [[bench]]
Empty file.

0 comments on commit df182aa

Please sign in to comment.