2016-08-24 18:35:21 +02:00
|
|
|
[package]
|
|
|
|
name = "ethcrypto"
|
|
|
|
version = "0.1.0"
|
2016-12-11 19:43:58 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2016-08-24 18:35:21 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rust-crypto = "0.2.36"
|
2017-08-07 10:06:02 +02:00
|
|
|
tiny-keccak = "1.3"
|
2018-03-19 06:39:46 +01:00
|
|
|
eth-secp256k1 = { git = "https://github.com/paritytech/rust-secp256k1", optional = true }
|
|
|
|
ethkey = { path = "../ethkey", optional = true }
|
2018-02-09 09:32:06 +01:00
|
|
|
ethereum-types = "0.2"
|
2018-03-14 15:41:35 +01:00
|
|
|
subtle = "0.5"
|
2018-03-19 06:39:46 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["secp256k1"]
|
|
|
|
secp256k1 = ["eth-secp256k1", "ethkey"]
|