-
Notifications
You must be signed in to change notification settings - Fork 291
/
Copy pathCargo.toml
38 lines (31 loc) · 899 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
32
33
34
35
36
37
38
[package]
name = "alloy-signer-trezor"
description = "Ethereum Trezor signer"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
exclude.workspace = true
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lints]
workspace = true
[dependencies]
alloy-consensus = { workspace = true, features = ["std"] }
alloy-network.workspace = true
alloy-primitives.workspace = true
alloy-signer.workspace = true
trezor-client = { version = "=0.1.3", default-features = false, features = [
"ethereum",
] }
async-trait.workspace = true
semver.workspace = true
thiserror.workspace = true
tracing.workspace = true
[dev-dependencies]
alloy-rpc-types-eth.workspace = true
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }