Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3,749 changes: 3,463 additions & 286 deletions Cargo.lock

Large diffs are not rendered by default.

89 changes: 86 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,95 @@ members = [
"eip7702-core",
"executors",
"server",
"solana-core",
"thirdweb-core",
"twmq",
]
resolver = "2"

[workspace.dependencies]
alloy = { version = "1.0.23" }
vault-types = { version = "0.1.0", git = "ssh://[email protected]/thirdweb-dev/vault.git", branch = "pb/update-alloy" }
vault-sdk = { version = "0.1.0", git = "ssh://[email protected]/thirdweb-dev/vault.git", branch = "pb/update-alloy" }
# Alloy and related
alloy = { version = "1.0.36" }
alloy-signer-aws = { version = "1.0.23" }

# Vault
vault-types = { version = "0.1.0", git = "ssh://[email protected]/thirdweb-dev/vault.git", branch = "main" }
vault-sdk = { version = "0.1.0", git = "ssh://[email protected]/thirdweb-dev/vault.git", branch = "main" }

# Solana
solana-sdk = "3.0"
solana-client = "3.0"
solana-transaction-status = "3.0"
solana-connection-cache = "3.0"
solana-commitment-config = "3.0"
solana-compute-budget-interface = "3.0"
spl-memo-interface = "2.0"

# AWS
aws-config = "1.8.2"
aws-sdk-kms = "1.79.0"
aws-credential-types = "1.2.4"

# Serialization
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
serde_with = "3.14.0"
serde-bool = "0.1.3"
serde_repr = "0.1.20"

# Error handling
thiserror = "2.0.12"
anyhow = "1.0.98"

# Logging and tracing
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19" }

# Async runtime
tokio = { version = "1.45.0" }
futures = "0.3.31"

# API documentation
utoipa = { version = "5.4.0" }
utoipa-axum = "0.2.0"
utoipa-scalar = { version = "0.3.0" }
schemars = "0.8.22"
aide = { version = "0.14.2" }

# Web framework
axum = { version = "0.8.4" }
tower = "0.5.2"
tower-http = { version = "0.6.2" }

# Caching
moka = { version = "0.12.10", features = ["future"] }

# Utilities
uuid = { version = "1.17.0", features = ["v4"] }
rand = "0.9.1"
chrono = "0.4.41"
base64 = "0.22.1"
hex = "0.4.3"
url = "2.5.4"
nanoid = "0.4.0"

# HTTP client
reqwest = "0.12.18"

# Cryptography
hmac = "0.12.1"
sha2 = "0.10.9"

# Metrics
prometheus = "0.13.4"
lazy_static = "1.5.0"

# Configuration
config = "0.15.11"
aws-arn = "0.3.1"

# Redis
redis = { version = "0.31.0", features = ["tokio-comp", "connection-manager"] }

# Dev dependencies
criterion = { version = "0.6", features = ["html_reports", "async_tokio"] }
6 changes: 3 additions & 3 deletions aa-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ edition = "2024"

[dependencies]
alloy = { workspace = true, features = ["serde"] }
tokio = "1.44.2"
tokio = { workspace = true }
engine-aa-types = { path = "../aa-types" }
engine-core = { path = "../core" }
vault-types = { workspace = true }
vault-sdk = { workspace = true }
serde = "1.0.219"
tracing = "0.1.41"
serde = { workspace = true }
tracing = { workspace = true }
12 changes: 6 additions & 6 deletions aa-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ version = "0.1.0"
edition = "2024"

[dependencies]
alloy = { version = "1.0.8", features = ["serde"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
thiserror = "2.0.12"
schemars = "0.8.22"
utoipa = "5.4.0"
alloy = { workspace = true, features = ["serde"] }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
schemars = { workspace = true }
utoipa = { workspace = true }
34 changes: 19 additions & 15 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,27 @@ version = "0.1.0"
edition = "2024"

[dependencies]
alloy = { version = "1.0.8", features = ["serde", "json-rpc"] }
alloy = { workspace = true, features = ["serde", "json-rpc"] }
engine-aa-types = { path = "../aa-types" }
schemars = "0.8.22"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
thiserror = "2.0.12"
schemars = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
vault-types = { workspace = true }
vault-sdk = { workspace = true }
tower = "0.5.2"
tracing = "0.1.41"
tower = { workspace = true }
tracing = { workspace = true }
twmq = { version = "0.1.0", path = "../twmq" }
thirdweb-core = { version = "0.1.0", path = "../thirdweb-core" }
uuid = { version = "1.17.0", features = ["v4"] }
utoipa = { version = "5.4.0", features = ["preserve_order"] }
serde_with = "3.13.0"
alloy-signer-aws = { version = "1.0.23", features = ["eip712"] }
aws-config = "1.8.2"
aws-sdk-kms = "1.79.0"
aws-credential-types = "1.2.4"
moka = { version = "0.12", features = ["future"] }
uuid = { workspace = true }
utoipa = { workspace = true, features = ["preserve_order"] }
serde_with = { workspace = true }
alloy-signer-aws = { workspace = true, features = ["eip712"] }
aws-config = { workspace = true }
aws-sdk-kms = { workspace = true }
aws-credential-types = { workspace = true }
moka = { workspace = true }
solana-sdk = { workspace = true }
solana-commitment-config = { workspace = true }
solana-client = { workspace = true }
engine-solana-core = { version = "0.1.0", path = "../solana-core" }
Loading
Loading