chore: use published crate (#148)

This commit is contained in:
Rohit Narurkar 2021-01-13 23:07:03 +05:30 committed by GitHub
parent 177f0c3eb9
commit 14c9958e98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

3
Cargo.lock generated
View File

@ -542,7 +542,8 @@ dependencies = [
[[package]]
name = "eth-keystore"
version = "0.1.0"
source = "git+https://github.com/roynalnaruto/eth-keystore-rs#32777a4bfbd6edc804c88b702b8ffa83546a46c9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96bf63261e2e008bc78d1dc363d118d59741b10322d9dd6cf7db5fbf58fa81af"
dependencies = [
"hex",
"rand 0.7.3",

View File

@ -19,7 +19,7 @@ thiserror = { version = "1.0.22", default-features = false }
serde = { version = "1.0.119", default-features = false }
coins-ledger = { version = "0.1.0", default-features = false, optional = true }
eth-keystore = { git = "https://github.com/roynalnaruto/eth-keystore-rs" }
eth-keystore = { version = "0.1.0" }
hex = { version = "0.4.2", default-features = false, features = ["std"] }
async-trait = { version = "0.1.40", default-features = false }
elliptic-curve = { version = "0.8.4", default-features = false }