Skip to content

Commit 16d9474

Browse files
committed
Public Technology Preview v0.1
1 parent e5c25af commit 16d9474

File tree

3 files changed

+25
-6
lines changed

3 files changed

+25
-6
lines changed

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[workspace]
22
members = [
3-
".", # The main rblib library
3+
".", # The main rblib library
44
"bin/flashblocks",
5+
"src/pipelines/macros",
6+
"src/test_utils/macros",
57
]
68
resolver = "2"
79

@@ -129,8 +131,9 @@ reth-optimism-cli = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0
129131
reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0", optional = true }
130132

131133
# test-utils
132-
reth-ipc = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0", optional = true }
133134
rblib-tests-macros = { path = "src/test_utils/macros", optional = true }
135+
136+
reth-ipc = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0", optional = true }
134137
jsonrpsee-core = { version = "0.25.1", optional = true }
135138
nanoid = { version = "0.4", optional = true }
136139
alloy-genesis = { version = "1.0", optional = true }

src/pipelines/macros/Cargo.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
[package]
22
name = "pipelines-macros"
3-
version = "0.1.0"
4-
edition = "2024"
3+
description = "Internal helper macros for the rblib pipelines API."
4+
version.workspace = true
5+
edition.workspace = true
6+
rust-version.workspace = true
7+
license.workspace = true
8+
homepage.workspace = true
9+
repository.workspace = true
10+
authors.workspace = true
11+
exclude.workspace = true
12+
publish = false
513

614
[lib]
715
proc-macro = true

src/test_utils/macros/Cargo.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
[package]
22
name = "rblib-tests-macros"
3-
version = "0.1.0"
4-
edition = "2024"
3+
description = "Internal helper macros for rblib testing infrastructure."
4+
version.workspace = true
5+
edition.workspace = true
6+
rust-version.workspace = true
7+
license.workspace = true
8+
homepage.workspace = true
9+
repository.workspace = true
10+
authors.workspace = true
11+
exclude.workspace = true
12+
publish = false
513

614
[lib]
715
doctest = false

0 commit comments

Comments
 (0)