ethers-rs/ethers-signers/Cargo.toml

53 lines
1.9 KiB
TOML

[package]
name = "ethers-signers"
license = "MIT OR Apache-2.0"
version = "0.4.0"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
description = "Signer implementations for the ethers-rs crate"
homepage = "https://docs.rs/ethers"
repository = "https://github.com/gakonst/ethers-rs"
keywords = ["ethereum", "web3", "celo", "ethers"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
ethers-core = { version = "0.4.0", path = "../ethers-core" }
thiserror = { version = "1.0.24", default-features = false }
coins-bip32 = "0.3.0"
coins-bip39 = "0.3.0"
coins-ledger = { version = "0.1.0", default-features = false, optional = true }
eth-keystore = { version = "0.3.0" }
hex = { version = "0.4.3", default-features = false, features = ["std"] }
async-trait = { version = "0.1.50", default-features = false }
elliptic-curve = { version = "0.10.5", default-features = false }
sha2 = { version = "0.9.3", default-features = false }
rand = { version = "0.8.4", default-features = false }
yubihsm = { version = "0.39.0", features = ["secp256k1", "http", "usb"], optional = true }
futures-util = "0.3.16"
futures-executor = "0.3.16"
# aws
rusoto_core = { version = "0.47.0", optional = true }
rusoto_kms = { version = "0.47.0", optional = true }
tracing = { version = "0.1.26", optional = true }
tracing-futures = { version = "0.2.5", optional = true }
spki = { version = "0.4.0", optional = true }
[dev-dependencies]
ethers = { version = "0.4.0", path = "../ethers" }
yubihsm = { version = "0.39.0", features = ["secp256k1", "usb", "mockhsm"] }
tempfile = "3.2.0"
tokio = { version = "1.5", default-features = false, features = ["macros"] }
tracing-subscriber = "0.2.19"
[features]
celo = ["ethers-core/celo"]
ledger = ["coins-ledger"]
yubi = ["yubihsm"]
aws = ["rusoto_core", "rusoto_kms", "tracing", "tracing-futures", "spki"]