2020-05-26 09:37:31 +00:00
|
|
|
[package]
|
|
|
|
name = "ethers-signers"
|
2020-06-18 05:20:20 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-08-28 23:53:10 +00:00
|
|
|
version = "0.5.1"
|
2020-05-26 09:37:31 +00:00
|
|
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
|
|
|
edition = "2018"
|
2020-06-20 13:55:07 +00:00
|
|
|
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"]
|
2020-05-26 09:37:31 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-08-28 23:53:10 +00:00
|
|
|
ethers-core = { version = "^0.5.0", path = "../ethers-core" }
|
2021-07-07 17:18:14 +00:00
|
|
|
thiserror = { version = "1.0.24", default-features = false }
|
|
|
|
coins-bip32 = "0.3.0"
|
|
|
|
coins-bip39 = "0.3.0"
|
2021-08-24 07:23:33 +00:00
|
|
|
coins-ledger = { version = "0.4.0", default-features = false, optional = true }
|
2021-03-04 07:30:36 +00:00
|
|
|
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
2021-04-27 20:18:06 +00:00
|
|
|
async-trait = { version = "0.1.50", default-features = false }
|
2021-08-24 07:23:41 +00:00
|
|
|
elliptic-curve = { version = "0.10.6", default-features = false }
|
2021-07-07 17:18:14 +00:00
|
|
|
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 }
|
2021-08-31 05:48:24 +00:00
|
|
|
futures-util = "0.3.17"
|
2021-07-30 07:10:51 +00:00
|
|
|
futures-executor = "0.3.16"
|
2020-06-01 22:27:23 +00:00
|
|
|
|
2021-08-01 21:18:24 +00:00
|
|
|
# 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 }
|
|
|
|
|
2021-08-23 09:56:44 +00:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
eth-keystore = { version = "0.3.0" }
|
|
|
|
|
2020-06-01 22:27:23 +00:00
|
|
|
[dev-dependencies]
|
2021-08-23 09:56:44 +00:00
|
|
|
tracing-subscriber = "0.2.20"
|
2021-07-07 17:18:14 +00:00
|
|
|
yubihsm = { version = "0.39.0", features = ["secp256k1", "usb", "mockhsm"] }
|
2020-06-17 08:02:03 +00:00
|
|
|
|
2021-08-23 09:56:44 +00:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
|
|
|
yubihsm = { version = "0.39.0", features = ["secp256k1", "usb", "mockhsm"] }
|
2021-08-28 21:06:29 +00:00
|
|
|
tokio = { version = "1.5", default-features = false, features = ["macros", "rt"] }
|
2021-08-23 09:56:44 +00:00
|
|
|
tempfile = "3.2.0"
|
2021-08-01 21:18:24 +00:00
|
|
|
|
2020-06-17 09:22:01 +00:00
|
|
|
[features]
|
2020-09-24 21:33:09 +00:00
|
|
|
celo = ["ethers-core/celo"]
|
2020-10-02 08:41:16 +00:00
|
|
|
ledger = ["coins-ledger"]
|
|
|
|
yubi = ["yubihsm"]
|
2021-08-01 21:18:24 +00:00
|
|
|
aws = ["rusoto_core", "rusoto_kms", "tracing", "tracing-futures", "spki"]
|