Skip to content

Commit

Permalink
feat: migrate to alloy and more (#2166)
Browse files Browse the repository at this point in the history
  • Loading branch information
justprosh committed Mar 14, 2024
1 parent 0f27f20 commit 0edf82d
Show file tree
Hide file tree
Showing 48 changed files with 1,657 additions and 2,045 deletions.
482 changes: 465 additions & 17 deletions Cargo.lock

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ members = [
"crates/chain-connector",
"crates/hex-utils",
"crates/chain-data",
"crates/chain-types",
"crates/types",
"crates/core-manager",
]
Expand Down Expand Up @@ -101,7 +100,6 @@ hex-utils = { path = "crates/hex-utils" }
chain-data = { path = "crates/chain-data" }
chain-listener = { path = "crates/chain-listener" }
chain-connector = { path = "crates/chain-connector" }
chain-types = { path = "crates/chain-types" }
types = { path = "crates/types" }
core-manager = { path = "crates/core-manager" }

Expand Down Expand Up @@ -176,7 +174,10 @@ clarity = "1.3.0"
cpu-utils = "0.7.0"
ccp-shared = "0.7.0"
ccp-rpc-client = "0.7.0"

alloy-sol-types = "0.6.4"
alloy-primitives = "0.6.4"
alloy_serde_macro = "0.1.2"
const-hex = "1.11.3"

[profile.dev]
opt-level = 0
Expand Down
6 changes: 4 additions & 2 deletions crates/chain-connector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ particle-builtins = { workspace = true }
particle-execution = { workspace = true }
particle-args = { workspace = true }
chain-data = { workspace = true }
chain-types = { workspace = true }
ethabi = { workspace = true }
jsonrpsee = { workspace = true, features = ["macros", "server", "client"] }
eyre = { workspace = true }
fluence-libp2p = { workspace = true }
Expand All @@ -26,6 +24,10 @@ ccp-shared = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
types = { workspace = true }
alloy-sol-types = { workspace = true }
alloy-primitives = { workspace = true }
const-hex = { workspace = true }
serde = { workspace = true }

[dev-dependencies]
mockito = { workspace = true }
Loading

0 comments on commit 0edf82d

Please sign in to comment.