ethers-rs/ethers-signers/Cargo.toml

31 lines
942 B
TOML
Raw Normal View History

2020-05-26 09:37:31 +00:00
[package]
name = "ethers-signers"
license = "MIT OR Apache-2.0"
version = "0.1.3"
2020-05-26 09:37:31 +00:00
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
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]
ethers-core = { version = "0.1.3", path = "../ethers-core" }
ethers-providers = { version = "0.1.3", path = "../ethers-providers" }
thiserror = { version = "1.0.15", default-features = false }
futures-util = { version = "0.3.5", default-features = false }
serde = "1.0.112"
2020-06-01 22:27:23 +00:00
[dev-dependencies]
ethers = { version = "0.1.3", path = "../ethers" }
2020-06-01 22:27:23 +00:00
tokio = { version = "0.2.21", features = ["macros"] }
serde_json = "1.0.55"
[features]
celo = ["ethers-core/celo", "ethers-providers/celo"]