Skip to content

Commit e3758fc

Browse files
committed
fixes and parallelism improvements
1 parent f3d8425 commit e3758fc

9 files changed

Lines changed: 1859 additions & 1068 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,8 @@ members = [
99
"twmq",
1010
]
1111
resolver = "2"
12+
13+
[workspace.dependencies]
14+
alloy = { version = "1.0.8" }
15+
vault-types = { version = "0.1.0", git = "ssh://git@github.com/thirdweb-dev/vault.git", branch = "pb/update-alloy" }
16+
vault-sdk = { version = "0.1.0", git = "ssh://git@github.com/thirdweb-dev/vault.git", branch = "pb/update-alloy" }

aa-core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ version = "0.1.0"
44
edition = "2024"
55

66
[dependencies]
7-
alloy = { version = "1.0.8", features = ["serde"] }
7+
alloy = { workspace = true, features = ["serde"] }
88
tokio = "1.44.2"
99
engine-aa-types = { path = "../aa-types" }
1010
engine-core = { path = "../core" }
11-
vault-types = { version = "0.1.0", git = "ssh://git@github.com/thirdweb-dev/vault.git", branch = "pb/update-alloy" }
12-
vault-sdk = { version = "0.1.0", git = "ssh://git@github.com/thirdweb-dev/vault.git", branch = "pb/update-alloy" }
11+
vault-types = { workspace = true }
12+
vault-sdk = { workspace = true }
1313
serde = "1.0.219"
1414
tracing = "0.1.41"

core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ schemars = "0.8.22"
1010
serde = { version = "1.0.219", features = ["derive"] }
1111
serde_json = "1.0.140"
1212
thiserror = "2.0.12"
13-
vault-types = { version = "0.1.0", git = "ssh://git@github.com/thirdweb-dev/vault.git", branch = "pb/update-alloy" }
14-
vault-sdk = { version = "0.1.0", git = "ssh://git@github.com/thirdweb-dev/vault.git", branch = "pb/update-alloy" }
13+
vault-types = { workspace = true }
14+
vault-sdk = { workspace = true }
1515
tower = "0.5.2"
1616
tracing = "0.1.41"
1717
twmq = { version = "0.1.0", path = "../twmq" }

0 commit comments

Comments
 (0)