-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (38 loc) · 1.13 KB
/
Cargo.toml
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
[package]
name = "zenith-builder-example"
version = "0.1.1"
description = "Zenith Builder Example"
edition = "2024"
rust-version = "1.85"
authors = ["init4"]
license = "Apache-2.0 OR MIT"
homepage = "https://github.com/init4tech/builder"
repository = "https://github.com/init4tech/builder"
[lib]
name = "builder"
[[bin]]
name = "zenith-builder-example"
path = "bin/builder.rs"
[[bin]]
name = "transaction-submitter"
path = "bin/submit_transaction.rs"
[dependencies]
init4-bin-base = "0.1.0"
zenith-types = "0.13"
alloy = { version = "0.7.3", features = ["full", "json-rpc", "signer-aws", "rpc-types-mev", "rlp"] }
aws-config = "1.1.7"
aws-sdk-kms = "1.15.0"
hex = { package = "const-hex", version = "1", default-features = false, features = [
"alloc",
] }
serde = { version = "1.0.197", features = ["derive"] }
tracing = "0.1.40"
axum = "0.7.5"
eyre = "0.6.12"
openssl = { version = "0.10", features = ["vendored"] }
reqwest = { version = "0.11.24", features = ["blocking", "json"] }
serde_json = "1.0"
thiserror = "1.0.68"
tokio = { version = "1.36.0", features = ["full", "macros", "rt-multi-thread"] }
async-trait = "0.1.80"
oauth2 = "4.4.2"