2016-06-20 00:10:34 +02:00
|
|
|
[package]
|
2019-08-12 18:55:11 +02:00
|
|
|
description = "Parity Ethereum Key Management"
|
2016-06-20 00:10:34 +02:00
|
|
|
name = "ethstore"
|
2019-01-03 14:07:27 +01:00
|
|
|
version = "0.2.1"
|
2016-12-11 19:43:58 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2016-06-20 00:10:34 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2017-04-01 08:26:44 +02:00
|
|
|
libc = "0.2"
|
2018-02-09 09:32:06 +01:00
|
|
|
rand = "0.4"
|
2016-06-20 00:10:34 +02:00
|
|
|
ethkey = { path = "../ethkey" }
|
2017-07-06 11:36:15 +02:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
rustc-hex = "1.0"
|
2016-07-25 10:45:45 +02:00
|
|
|
time = "0.1.34"
|
2017-02-06 17:21:35 +01:00
|
|
|
itertools = "0.5"
|
2018-12-11 17:22:55 +01:00
|
|
|
parking_lot = "0.7"
|
2019-02-06 17:53:34 +01:00
|
|
|
parity-crypto = "0.3.0"
|
2018-09-04 20:13:51 +02:00
|
|
|
ethereum-types = "0.4"
|
2018-09-25 12:24:59 +02:00
|
|
|
smallvec = "0.6"
|
2019-09-12 18:43:53 +02:00
|
|
|
parity-wordlist = "1.3"
|
2017-04-11 10:24:56 +02:00
|
|
|
tempdir = "0.3"
|
2019-02-06 17:53:34 +01:00
|
|
|
lazy_static = "1.2.0"
|
2016-06-20 00:10:34 +02:00
|
|
|
|
2018-03-14 15:41:35 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
matches = "0.1"
|
|
|
|
|
2017-02-13 16:38:47 +01:00
|
|
|
[lib]
|