Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
dancoombs committed Jan 10, 2024
1 parent cd4f1af commit 4152547
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 4 deletions.
46 changes: 42 additions & 4 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions bin/tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Rundler tools
[dependencies]
rundler-dev = { path = "../../crates/dev" }
rundler-rpc = { path = "../../crates/rpc" }
rundler-types = { path = "../../crates/types" }

anyhow = "1.0.70"
clap = { version = "4.2.4", features = ["derive", "env"] }
Expand All @@ -22,3 +23,6 @@ rusoto_core = { version = "0.48.0", default-features = false, features = ["rustl
rusoto_kms = { version = "0.48.0", default-features = false, features = ["rustls"] }
serde_json = "1.0.96"
tokio.workspace = true

envy = "0.4"
serde_yaml = "0.9"
2 changes: 2 additions & 0 deletions crates/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,7 @@ serde.workspace = true
serde_json.workspace = true
strum.workspace = true

paste = "1.0"

[build-dependencies]
ethers.workspace = true
3 changes: 3 additions & 0 deletions crates/types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,6 @@ pub use user_operation::UserOperationId;

mod storage;
pub use storage::StorageSlot;

mod chain_spec;
pub use chain_spec::{ChainSpec, OptionalChainSpec};

0 comments on commit 4152547

Please sign in to comment.