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-03-04 07:30:27 +00:00
|
|
|
version = "0.2.2"
|
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-03-04 07:30:27 +00:00
|
|
|
ethers-core = { version = "0.2.2", path = "../ethers-core" }
|
2021-02-22 08:04:18 +00:00
|
|
|
thiserror = { version = "1.0.24", default-features = false }
|
2021-04-05 07:44:58 +00:00
|
|
|
coins-bip32 = "0.2.2"
|
|
|
|
coins-bip39 = "0.2.2"
|
2021-01-05 12:15:18 +00:00
|
|
|
coins-ledger = { version = "0.1.0", default-features = false, optional = true }
|
2021-02-16 13:32:43 +00:00
|
|
|
eth-keystore = { version = "0.2.0" }
|
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-04-27 17:52:39 +00:00
|
|
|
elliptic-curve = { version = "0.9.11", default-features = false }
|
2021-02-10 09:56:00 +00:00
|
|
|
sha2 = { version = "0.9.3", default-features = false }
|
2020-12-25 00:17:21 +00:00
|
|
|
rand = { version = "0.7.3", default-features = false }
|
2021-02-08 09:56:35 +00:00
|
|
|
yubihsm = { version = "0.38.0", features = ["secp256k1", "http", "usb"], optional = true }
|
2021-04-15 16:46:45 +00:00
|
|
|
futures-util = "0.3.14"
|
2021-03-02 12:53:52 +00:00
|
|
|
futures-executor = "0.3.13"
|
2020-06-01 22:27:23 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-01-13 18:10:50 +00:00
|
|
|
ethers = { version = "0.2", path = "../ethers" }
|
2021-02-08 09:56:35 +00:00
|
|
|
yubihsm = { version = "0.38.0", features = ["secp256k1", "usb", "mockhsm"] }
|
2020-06-17 08:02:03 +00:00
|
|
|
|
2021-01-13 17:37:27 +00:00
|
|
|
tempfile = "3.2.0"
|
2021-04-16 07:09:43 +00:00
|
|
|
tokio = { version = "1.5", default-features = false, features = ["macros"] }
|
2021-03-02 12:53:33 +00:00
|
|
|
serde_json = { version = "1.0.64", default-features = false }
|
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"]
|