Skip to content

Commit

Permalink
fixing dalek version to pre.0 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
briancorbin authored Sep 28, 2023
1 parent 2628e7a commit 4100eec
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ publish = false
[features]
cli = []

prost = [ "dep:prost" ]
prost = ["dep:prost"]
summary = []
ident = []

default = [ "cli", "prost", "summary", "ident" ]
default = ["cli", "prost", "summary", "ident"]

[dependencies]
async-trait = "0.1.57"
anyhow = "1.0.58"
base64 = "0.21.0"
clap = { version = "4.0.26", features = [ "derive" ] }
ed25519-dalek = { version = "2.0.0-pre.1", default_features = false }
clap = { version = "4.0.26", features = ["derive"] }
ed25519-dalek = { version = "2.0.0-pre.0", default_features = false }
encdec = "0.9.0"
strum = { version = "0.24.1", features = [ "derive" ] }
tokio = { version = "1.20.1", features = [ "full" ] }
strum = { version = "0.24.1", features = ["derive"] }
tokio = { version = "1.20.1", features = ["full"] }
hex = "0.4.3"
thiserror = "1.0.37"
lazy_static = "1.4.0"
Expand All @@ -34,18 +34,18 @@ rand = "0.8.4"
rand_core = "0.6.4"
simplelog = "0.12.0"
futures = "0.3.24"
serde = { version = "1.0.148", features = [ "derive" ] }
serde_cbor = { version = "0.11.2", features = [ "std" ] }
serde = { version = "1.0.148", features = ["derive"] }
serde_cbor = { version = "0.11.2", features = ["std"] }
serde_json = { version = "*" }
prost = { version = "0.11.2", optional = true }
zeroize = { version = "*" }

ledger-lib = { version = "0.1.0", features = [ "clap" ] }
ledger-lib = { version = "0.1.0", features = ["clap"] }
ledger-proto = { version = "0.1.0" }

ledger-mob-apdu = { path = "../apdu" }

mc-core = { version = "5", features = [ "serde" ] }
mc-core = { version = "5", features = ["serde"] }
mc-crypto-keys = { version = "5", default_features = false }
mc-crypto-ring-signature = { version = "5", default_features = false }
mc-crypto-ring-signature-signer = { version = "5", default_features = false }
Expand All @@ -58,7 +58,7 @@ mc-transaction-summary = { version = "5" }
toml = "0.5.9"
tiny-bip39 = "1.0"
portpicker = "0.1.1"
serde = { version = "1.0.144", features = [ "derive" ] }
serde = { version = "1.0.144", features = ["derive"] }

ledger-sim = "0.1.0"
ledger-mob-tests = { path = "../tests", default_features = false }
Expand All @@ -67,12 +67,12 @@ curve25519-dalek = { version = "4.0.0-rc.1", default_features = false }
x25519-dalek = { version = "2.0.0-pre.2", default_features = false }
ed25519-dalek = { version = "2.0.0-pre.0", default_features = false }

mc-core = { version = "5", features = [ "bip39" ] }
mc-core = { version = "5", features = ["bip39"] }
mc-crypto-keys = { version = "5", default-features = false }
mc-crypto-ring-signature = { version = "5", default-features = false }
mc-util-from-random = { version = "5", default-features = false }

[[bin]]
name = "ledger-mob-cli"
path = "src/cli/main.rs"
required-features = [ "cli" ]
required-features = ["cli"]

0 comments on commit 4100eec

Please sign in to comment.