add ed25519-dalek crate solana dependencie

This commit is contained in:
ghassmo
2021-09-12 01:39:26 +03:00
parent 43ec92c3e5
commit fe57c78daf
2 changed files with 6 additions and 2 deletions

3
Cargo.lock generated
View File

@@ -1,5 +1,7 @@
# This file is automatically @generated by Cargo. # This file is automatically @generated by Cargo.
# It is not intended for manual editing. # It is not intended for manual editing.
version = 3
[[package]] [[package]]
name = "Inflector" name = "Inflector"
version = "0.11.4" version = "0.11.4"
@@ -1348,6 +1350,7 @@ dependencies = [
"ctrlc", "ctrlc",
"dirs 3.0.2", "dirs 3.0.2",
"easy-parallel", "easy-parallel",
"ed25519-dalek",
"electrum-client", "electrum-client",
"failure", "failure",
"failure_derive", "failure_derive",

View File

@@ -84,8 +84,9 @@ dirs = "3.0.2"
## Cashier Solana Dependencies ## Cashier Solana Dependencies
solana-sdk = {version = "1.7.11", optional = true} solana-sdk = {version = "1.7.11", optional = true}
solana-client = {version = "1.7.11", optional = true} solana-client = {version = "1.7.11", optional = true}
tokio-tungstenite = {version = "0.15.0", optional = true} tokio-tungstenite = {version = "0.15.0", optional = true}
tokio = {version = "1.11.0", features = ["full"], optional = true} tokio = {version = "1.11.0", features = ["full"], optional = true}
ed25519-dalek = {version = "1.0.1", optional = true}
## Cashier Bitcoin Dependencies ## Cashier Bitcoin Dependencies
bitcoin = {version = "0.27.0", optional = true } bitcoin = {version = "0.27.0", optional = true }
@@ -98,7 +99,7 @@ features = ["bundled", "sqlcipher"]
[features] [features]
default = ["bitcoin", "secp256k1", "electrum-client"] default = ["bitcoin", "secp256k1", "electrum-client"]
sol = ["solana-sdk", "solana-client", "tokio-tungstenite", "tokio"] sol = ["solana-sdk", "solana-client", "tokio-tungstenite", "tokio", "ed25519-dalek" ]
[[bin]] [[bin]]
name = "lisp" name = "lisp"