-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (29 loc) · 880 Bytes
/
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
[package]
name = "signer-proxy"
version = "1.0.0-rc.7"
edition = "2021"
[dependencies]
axum = { version = "0.7.5", features = ["macros"] }
tokio = { version = "1.39.3", features = ["rt-multi-thread", "signal"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
structopt = "0.3"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
alloy = { git = "https://github.com/quertc/alloy", branch = "better-yubi", features = [
"rlp",
"rpc-types",
"eips",
"network",
"signer-yubihsm",
"signer-aws",
] }
yubihsm = { version = "0.42.1", features = ["secp256k1", "http", "usb"] }
anyhow = "1.0.86"
tower-http = { version = "0.5.2", features = ["timeout", "trace"] }
strum = { version = "0.26", features = ["derive"] }
aws-config = "1.5.5"
aws-sdk-kms = "1.40.0"
[features]
default = ["mock"]
mock = ["yubihsm/mockhsm"]