Skip to content

Commit

Permalink
chore: set crypto dependency to crate version
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbinth committed Oct 10, 2023
1 parent 418a8ad commit b5eb79a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ sve = ["miden-crypto/sve", "std"]

[dependencies]
math = { package = "winter-math", version = "0.6", default-features = false }
miden-crypto = {git = "https://github.com/0xPolygonMiden/crypto", branch = "next", default-features = false }
miden-crypto = { package = "miden-crypto", version = "0.7", default-features = false }
winter-crypto = { package = "winter-crypto", version = "0.6", default-features = false }
winter-utils = { package = "winter-utils", version = "0.6", default-features = false }

Expand Down
1 change: 1 addition & 0 deletions miden/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ concurrent = ["prover/concurrent", "std"]
default = ["std"]
executable = ["dep:env_logger", "dep:hex", "hex?/std", "std", "dep:serde", "serde?/std", "dep:serde_derive", "dep:serde_json", "serde_json?/std", "dep:clap", "dep:rustyline"]
std = ["assembly/std", "log/std", "processor/std", "prover/std", "verifier/std"]
sve = ["processor/sve", "prover/sve", "std"]

[dependencies]
assembly = { package = "miden-assembly", path = "../assembly", version = "0.7", default-features = false }
Expand Down
7 changes: 4 additions & 3 deletions processor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ bench = false
doctest = false

[features]
concurrent = ["winter-prover/concurrent", "std"]
concurrent = ["std", "winter-prover/concurrent"]
default = ["std"]
internals = []
std = ["vm-core/std", "winter-prover/std", "log/std"]
std = ["log/std", "vm-core/std", "winter-prover/std"]
sve = ["std", "vm-core/sve"]

[dependencies]
log = "0.4"
log = { version = "0.4", default-features = false, optional = true }
vm-core = { package = "miden-core", path = "../core", version = "0.7", default-features = false }
miden-air = { package = "miden-air", path = "../air", version = "0.7", default-features = false }
winter-prover = { package = "winter-prover", version = "0.6", default-features = false }
Expand Down
1 change: 1 addition & 0 deletions prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ concurrent = ["processor/concurrent", "std", "winter-prover/concurrent"]
default = ["std"]
metal = ["dep:ministark-gpu", "dep:elsa", "dep:pollster", "concurrent", "std"]
std = ["air/std", "processor/std", "log/std", "winter-prover/std"]
sve = ["processor/sve", "std"]

[dependencies]
air = { package = "miden-air", path = "../air", version = "0.7", default-features = false }
Expand Down

0 comments on commit b5eb79a

Please sign in to comment.