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"
|
2020-06-20 13:55:07 +00:00
|
|
|
version = "0.1.3"
|
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]
|
2020-06-20 13:55:07 +00:00
|
|
|
ethers-core = { version = "0.1.3", path = "../ethers-core" }
|
2020-06-17 06:38:04 +00:00
|
|
|
thiserror = { version = "1.0.15", default-features = false }
|
2020-06-10 10:34:48 +00:00
|
|
|
futures-util = { version = "0.3.5", default-features = false }
|
2020-10-08 15:56:36 +00:00
|
|
|
futures-executor = { version = "0.3.5", default-features = false }
|
2020-09-20 15:17:02 +00:00
|
|
|
serde = { version = "1.0.112", default-features = false }
|
|
|
|
|
|
|
|
coins-ledger = { git = "https://github.com/summa-tx/bitcoins-rs", optional = true }
|
2020-10-02 08:41:16 +00:00
|
|
|
rustc-hex = { version = "2.1.0" }
|
2020-09-20 15:17:02 +00:00
|
|
|
async-trait = "0.1.40"
|
2020-12-16 12:05:16 +00:00
|
|
|
elliptic-curve = { version = "0.7.1", features = ["arithmetic"] }
|
2020-10-02 08:41:16 +00:00
|
|
|
sha2 = { version = "0.9.1" }
|
|
|
|
rand = "0.7.3"
|
|
|
|
|
2020-12-16 12:05:16 +00:00
|
|
|
yubihsm = { version = "0.36.0", features = ["secp256k1", "http", "usb"], optional = true }
|
2020-06-01 22:27:23 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-06-20 13:55:07 +00:00
|
|
|
ethers = { version = "0.1.3", path = "../ethers" }
|
2020-12-16 12:05:16 +00:00
|
|
|
yubihsm = { version = "0.36.0", features = ["secp256k1", "usb", "mockhsm"] }
|
2020-06-17 08:02:03 +00:00
|
|
|
|
2020-06-01 22:27:23 +00:00
|
|
|
tokio = { version = "0.2.21", features = ["macros"] }
|
2020-06-20 13:55:07 +00:00
|
|
|
serde_json = "1.0.55"
|
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"]
|