Skip to content

Commit

Permalink
chore: dalek lock
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Mar 5, 2024
1 parent 4e151da commit 55bed55
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions plonky2x/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,58 +1,58 @@
[package]
edition = "2021"
name = "plonky2x"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
ci = []
default = ["parallel", "std", "timing"]
parallel = ["plonky2/parallel"]
std = ["plonky2/std", "itertools/use_std"]
timing = ["plonky2/timing"]
ci = []

[dependencies]
plonky2 = { git = "https://github.com/mir-protocol/plonky2.git", default-features = false, rev = "d2598bd" }
starkyx = { git = "https://github.com/succinctlabs/starkyx.git", branch = "ratan/rm-dalek-lock" }
plonky2x-derive = { path = "../derive" }
plonky2 = {git = "https://github.com/mir-protocol/plonky2.git", default-features = false, rev = "d2598bd"}
plonky2x-derive = {path = "../derive"}
starkyx = {git = "https://github.com/succinctlabs/starkyx.git", branch = "ratan/rm-dalek-lock"}

num = { version = "0.4", default-features = false }
sha2 = "0.10.7"
curve25519-dalek = "4.1.0"
ff = { package = "ff", version = "0.13", features = ["derive"] }
ethers = { version = "2.0" }
hex = "0.4.3"
log = { version = "0.4.14", default-features = false }
rand = { version = "0.8.4", package = "rand" }
itertools = { version = "0.10.0", default-features = false }
serde = { version = "1.0.187", features = ["derive"] }
serde_json = "1.0.103"
tokio = { version = "1", features = ["full"] }
anyhow = "1.0.75"
reqwest = { version = "0.11.4", features = ["blocking", "json"] }
array-macro = "2.1.5"
tracing = "0.1.37"
num-bigint = { version = "0.4", features = ["rand"] }
async-trait = "0.1.73"
backtrace = "0.3"
base64 = "0.13"
bincode = "1.3.3"
clap = {version = "4.4.0", features = ["derive"]}
curve25519-dalek = "4"
digest = "0.10.7"
dotenv = "0.15.0"
ed25519-dalek = {version = "2.0.0", features = ["rand_core"]}
env_logger = "0.10.0"
ethers = {version = "2.0"}
ff = {package = "ff", version = "0.13", features = ["derive"]}
futures = "0.3.28"
hex = "0.4.3"
itertools = {version = "0.10.0", default-features = false}
lazy_static = "1.4.0"
backtrace = "0.3"
env_logger = "0.10.0"
clap = { version = "4.4.0", features = ["derive"] }
dotenv = "0.15.0"
serde_with = "3.3.0"
bincode = "1.3.3"
uuid = { version = "1.4.1", features = ["serde"] }
log = {version = "0.4.14", default-features = false}
num = {version = "0.4", default-features = false}
num-bigint = {version = "0.4", features = ["rand"]}
rand = {version = "0.8.4", package = "rand"}
reqwest = {version = "0.11.4", features = ["blocking", "json"]}
serde = {version = "1.0.187", features = ["derive"]}
serde_json = "1.0.103"
serde_plain = "1.0.2"
ed25519-dalek = { version = "2.0.0", features = ["rand_core"] }
async-trait = "0.1.73"
digest = "0.10.7"
serde_with = "3.3.0"
sha2 = "0.10.7"
sha256 = "1.4.0"
tokio = {version = "1", features = ["full"]}
tracing = "0.1.37"
uuid = {version = "1.4.1", features = ["serde"]}

[dev-dependencies]
plonky2 = { git = "https://github.com/mir-protocol/plonky2.git", rev = "d2598bd", features = [
"gate_testing",
] }
env_logger = "0.10.0"
plonky2 = {git = "https://github.com/mir-protocol/plonky2.git", rev = "d2598bd", features = [
"gate_testing",
]}
rust-crypto = "0.2"

0 comments on commit 55bed55

Please sign in to comment.