-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (45 loc) · 1.49 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
51
52
53
54
55
56
57
58
[package]
name = "zenith-builder-example"
version = "0.1.1"
description = "Zenith Builder Example"
edition = "2021"
rust-version = "1.82"
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]
zenith-types = { git = "https://github.com/init4tech/zenith-rs", tag = "v0.10.1" }
alloy-primitives = { version = "=0.8.8", features = ["serde", "tiny-keccak"] }
alloy-sol-types = { version = "=0.8.8", features = ["json"] }
alloy-rlp = { version = "0.3.4" }
alloy = { version = "0.5.4", features = ["full", "json-rpc", "signer-aws"] }
aws-config = "1.1.7"
aws-sdk-kms = "1.15.0"
hex = { package = "const-hex", version = "1", default-features = false, features = [
"alloc",
] }
signet-types = { git = "ssh://[email protected]/init4tech/signet-node.git" }
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"] }
ruint = "1.12.1"
serde_json = "1.0"
thiserror = "1.0.68"
tokio = { version = "1.36.0", features = ["full", "macros", "rt-multi-thread"] }
tracing-subscriber = "0.3.18"
async-trait = "0.1.80"
oauth2 = "4.4.2"
metrics = "0.24.1"
metrics-exporter-prometheus = "0.16.0"