-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (52 loc) · 1.59 KB
/
Cargo.toml
File metadata and controls
53 lines (52 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "thirdweb-engine"
version = "0.1.0"
edition = "2024"
[dependencies]
alloy = { workspace = true, features = ["serde"] }
axum = { workspace = true, features = ["macros"] }
config = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
vault-sdk = { workspace = true }
vault-types = { workspace = true }
engine-core = { path = "../core" }
engine-aa-core = { path = "../aa-core" }
engine-solana-core = { path = "../solana-core" }
engine-executors = { path = "../executors" }
twmq = { path = "../twmq" }
thirdweb-core = { path = "../thirdweb-core" }
tokio = { workspace = true, features = ["full"] }
tower-http = { workspace = true, features = ["cors", "trace"] }
tracing = { workspace = true }
anyhow = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter", "json"] }
rand = { workspace = true }
futures = { workspace = true }
serde-bool = { workspace = true }
base64 = { workspace = true }
bincode = { workspace = true }
solana-sdk = { workspace = true }
solana-client = { workspace = true }
aide = { workspace = true, features = [
"axum",
"axum-json",
"macros",
"scalar",
] }
schemars = { workspace = true }
utoipa = { workspace = true, features = [
"macros",
"chrono",
"uuid",
"axum_extras",
"preserve_order",
] }
utoipa-axum = { workspace = true }
utoipa-scalar = { workspace = true, features = ["axum"] }
serde_with = { workspace = true }
aws-arn = { workspace = true }
moka = { workspace = true }
engine-eip7702-core = { path = "../eip7702-core" }
prometheus = { workspace = true }
thiserror = { workspace = true }