2020-05-26 09:37:31 +00:00
|
|
|
[package]
|
|
|
|
name = "ethers-signers"
|
2022-10-25 18:03:00 +00:00
|
|
|
version = "1.0.0"
|
2020-05-26 09:37:31 +00:00
|
|
|
edition = "2018"
|
2022-09-18 15:45:45 +00:00
|
|
|
rust-version = "1.62"
|
|
|
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
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]
|
2022-10-25 18:02:59 +00:00
|
|
|
ethers-core = { version = "^1.0.0", path = "../ethers-core", features = ["eip712"] }
|
2022-09-28 06:52:41 +00:00
|
|
|
thiserror = { version = "1.0.37", default-features = false }
|
2022-07-06 21:11:23 +00:00
|
|
|
coins-bip32 = "0.7.0"
|
|
|
|
coins-bip39 = "0.7.0"
|
|
|
|
coins-ledger = { version = "0.7.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-08-03 17:52:34 +00:00
|
|
|
elliptic-curve = { version = "0.12.3", default-features = false }
|
2022-09-16 18:24:39 +00:00
|
|
|
sha2 = { version = "0.10.6", default-features = false }
|
2022-02-15 20:32:38 +00:00
|
|
|
rand = { version = "0.8.5", default-features = false }
|
2022-08-03 17:52:25 +00:00
|
|
|
yubihsm = { version = "0.41.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-09-18 15:45:45 +00:00
|
|
|
semver = { version = "1.0.14", optional = true }
|
|
|
|
trezor-client = { version = "0.0.6", optional = true, default-features = false, features = [
|
2022-09-28 18:58:26 +00:00
|
|
|
"f_ethereum",
|
2022-09-18 15:45:45 +00:00
|
|
|
] }
|
2020-06-01 22:27:23 +00:00
|
|
|
|
2021-08-01 21:18:24 +00:00
|
|
|
# aws
|
2022-05-02 19:36:09 +00:00
|
|
|
rusoto_core = { version = "0.48.0", optional = true }
|
|
|
|
rusoto_kms = { version = "0.48.0", optional = true }
|
2022-10-07 17:03:01 +00:00
|
|
|
tracing = { version = "0.1.37", optional = true }
|
2022-05-09 16:28:55 +00:00
|
|
|
spki = { version = "0.6.0", 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-08-30 16:45:52 +00:00
|
|
|
eth-keystore = { version = "0.5.0" }
|
2022-10-12 18:13:25 +00:00
|
|
|
home = { version = "0.5.4", optional = true }
|
2021-08-23 09:56:44 +00:00
|
|
|
|
2022-10-25 18:12:50 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
ethers-contract-derive = { version = "^1.0.0", path = "../ethers-contract/ethers-contract-derive" }
|
|
|
|
ethers-derive-eip712 = { version = "^1.0.0", path = "../ethers-core/ethers-derive-eip712" }
|
|
|
|
serde_json = { version = "1.0.64" }
|
|
|
|
tracing-subscriber = "0.3.16"
|
|
|
|
yubihsm = { version = "0.41.0", features = ["secp256k1", "usb", "mockhsm"] }
|
|
|
|
|
2021-08-23 09:56:44 +00:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
2022-08-03 17:52:25 +00:00
|
|
|
yubihsm = { version = "0.41.0", features = ["secp256k1", "usb", "mockhsm"] }
|
2022-05-29 00:54:45 +00:00
|
|
|
tokio = { version = "1.18", 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"]
|
2022-05-02 19:36:09 +00:00
|
|
|
trezor = ["trezor-client", "futures", "semver", "home"]
|