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-11-23 19:23:12 +00:00
|
|
|
version = "0.6.0"
|
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-11-23 19:23:12 +00:00
|
|
|
ethers-core = { version = "^0.6.0", path = "../ethers-core", features = ["eip712"]}
|
2021-10-11 12:42:55 +00:00
|
|
|
thiserror = { version = "1.0.30", default-features = false }
|
2021-12-20 22:41:57 +00:00
|
|
|
coins-bip32 = "0.6.0"
|
|
|
|
coins-bip39 = "0.6.0"
|
|
|
|
coins-ledger = { version = "0.6.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 }
|
2022-01-31 08:08:14 +00:00
|
|
|
elliptic-curve = { version = "0.11.12", default-features = false }
|
2021-09-13 12:36:10 +00:00
|
|
|
sha2 = { version = "0.9.8", default-features = false }
|
2022-02-15 20:32:38 +00:00
|
|
|
rand = { version = "0.8.5", default-features = false }
|
2021-12-20 22:41:57 +00:00
|
|
|
yubihsm = { version = "0.40.0", features = ["secp256k1", "http", "usb"], optional = true }
|
2022-03-19 17:05:39 +00:00
|
|
|
futures-util = { version = "^0.3", optional = true }
|
|
|
|
futures-executor = { version = "^0.3", optional = true }
|
2022-03-28 16:39:23 +00:00
|
|
|
semver = { version = "1.0.7", optional = true }
|
2022-03-02 10:06:08 +00:00
|
|
|
trezor-client = { version = "0.0.5", optional = true, default-features = false, features = ["f_ethereum"] }
|
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 }
|
2022-04-18 16:56:07 +00:00
|
|
|
tracing = { version = "0.1.34", optional = true }
|
2022-01-06 06:20:17 +00:00
|
|
|
spki = { version = "0.5.4", optional = true }
|
2021-08-01 21:18:24 +00:00
|
|
|
|
2021-08-23 09:56:44 +00:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
2022-02-15 20:38:35 +00:00
|
|
|
eth-keystore = { version = "0.4.1" }
|
2022-03-19 17:05:39 +00:00
|
|
|
home = { version = "0.5.3", optional = true }
|
2021-08-23 09:56:44 +00:00
|
|
|
|
2020-06-01 22:27:23 +00:00
|
|
|
[dev-dependencies]
|
2021-11-23 19:23:12 +00:00
|
|
|
ethers-contract = { version = "^0.6.0", path = "../ethers-contract", features = ["eip712", "abigen"]}
|
|
|
|
ethers-derive-eip712 = { version = "0.2.0", path = "../ethers-core/ethers-derive-eip712" }
|
2021-10-19 08:52:36 +00:00
|
|
|
serde_json = { version = "1.0.64" }
|
2022-04-11 08:02:49 +00:00
|
|
|
tracing-subscriber = "0.3.11"
|
2021-12-20 22:41:57 +00:00
|
|
|
yubihsm = { version = "0.40.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]
|
2021-12-20 22:41:57 +00:00
|
|
|
yubihsm = { version = "0.40.0", features = ["secp256k1", "usb", "mockhsm"] }
|
2021-08-28 21:06:29 +00:00
|
|
|
tokio = { version = "1.5", default-features = false, features = ["macros", "rt"] }
|
2022-01-11 10:03:09 +00:00
|
|
|
tempfile = "3.3.0"
|
2021-08-01 21:18:24 +00:00
|
|
|
|
2020-06-17 09:22:01 +00:00
|
|
|
[features]
|
2022-03-19 17:05:39 +00:00
|
|
|
futures = ["futures-util", "futures-executor"]
|
2020-09-24 21:33:09 +00:00
|
|
|
celo = ["ethers-core/celo"]
|
2022-03-19 17:05:39 +00:00
|
|
|
ledger = ["coins-ledger", "futures", "semver"]
|
2020-10-02 08:41:16 +00:00
|
|
|
yubi = ["yubihsm"]
|
2022-03-19 17:05:39 +00:00
|
|
|
aws = ["rusoto_core", "rusoto_kms", "tracing", "spki"]
|
|
|
|
trezor = ["trezor-client", "futures", "semver", "home"]
|