55 lines
2.0 KiB
TOML
55 lines
2.0 KiB
TOML
[package]
|
|
name = "ethers-signers"
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.5.1"
|
|
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.5.0", path = "../ethers-core" }
|
|
thiserror = { version = "1.0.29", default-features = false }
|
|
coins-bip32 = "0.3.0"
|
|
coins-bip39 = "0.3.0"
|
|
coins-ledger = { version = "0.4.0", default-features = false, optional = true }
|
|
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
|
async-trait = { version = "0.1.50", default-features = false }
|
|
elliptic-curve = { version = "0.10.6", default-features = false }
|
|
sha2 = { version = "0.9.8", 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.17"
|
|
futures-executor = "0.3.17"
|
|
|
|
# aws
|
|
rusoto_core = { version = "0.47.0", optional = true }
|
|
rusoto_kms = { version = "0.47.0", optional = true }
|
|
tracing = { version = "0.1.27", optional = true }
|
|
tracing-futures = { version = "0.2.5", optional = true }
|
|
spki = { version = "0.4.1", optional = true }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
eth-keystore = { version = "0.3.0" }
|
|
|
|
[dev-dependencies]
|
|
tracing-subscriber = "0.2.23"
|
|
yubihsm = { version = "0.39.0", features = ["secp256k1", "usb", "mockhsm"] }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
|
yubihsm = { version = "0.39.0", features = ["secp256k1", "usb", "mockhsm"] }
|
|
tokio = { version = "1.5", default-features = false, features = ["macros", "rt"] }
|
|
tempfile = "3.2.0"
|
|
|
|
[features]
|
|
celo = ["ethers-core/celo"]
|
|
ledger = ["coins-ledger"]
|
|
yubi = ["yubihsm"]
|
|
aws = ["rusoto_core", "rusoto_kms", "tracing", "tracing-futures", "spki"]
|