Skip to content

Commit 4bf97df

Browse files
Added events poller and processor tests
1 parent 1460249 commit 4bf97df

File tree

13 files changed

+1557
-704
lines changed

13 files changed

+1557
-704
lines changed

Cargo.lock

Lines changed: 369 additions & 271 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = ["crates/*"]
1010

1111
[workspace.dependencies]
1212
scribe = { path = "./crates/scribe" }
13-
alloy = { version = "0.9.2", features = ["full", "signer-keystore", "node-bindings", "rpc-types-mev"] }
13+
alloy = { version = "0.11", features = ["full", "signer-keystore", "node-bindings", "rpc-types-mev"] }
1414
chrono = "0.4.38"
1515
env_logger = "0.11.3"
1616
eyre = "0.6.8"
@@ -24,11 +24,12 @@ mockall = "0.13.1"
2424
tokio = { version = "1", features = ["full"] }
2525
tokio-util = "0.7.12"
2626
thiserror = "2.0.11"
27+
serde_json = "1.0.138"
2728

2829
[dependencies]
2930
scribe = { workspace = true }
3031

31-
alloy = { workspace = true, features = ["full", "signer-keystore"] }
32+
alloy = { workspace = true, features = ["full", "signer-keystore", "getrandom"] }
3233
chrono = { workspace = true }
3334
env_logger = { workspace = true }
3435
eyre = { workspace = true }

crates/scribe/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
alloy = { workspace = true, features = ["full", "rpc-types-mev"] }
7+
alloy = { workspace = true, features = ["full", "rpc-types-mev", "getrandom"] }
88
chrono = { workspace = true }
99
log = { workspace = true }
1010
metrics = { workspace = true }
@@ -14,3 +14,4 @@ thiserror = { workspace = true }
1414

1515
[dev-dependencies]
1616
mockall = { workspace = true }
17+
serde_json = { workspace = true }

0 commit comments

Comments
 (0)