-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
28 lines (25 loc) · 887 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "plonk-verify"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/argumentcomputer/lurk-hs"
[dependencies]
# sphinx-recursion-gnark-ffi = { path = "../sphinx/recursion/gnark-ffi", features = ["native"]}
sphinx-recursion-gnark-ffi = { git = "https://github.com/argumentcomputer/sphinx.git", branch = "dev", features = ["native"]}
getrandom = "=0.2.14"
async-trait = "0.1.81"
p3-field = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1-new" }
p3-baby-bear = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1-new", features = [
"nightly-features",
]}
num-bigint = { version = "0.4.6", default-features = false }
serde = "1.0.207"
sha2 = "0.10.8"
hex = "0.4.3"
[lib]
crate-type = ["staticlib", "cdylib"]
[dev-dependencies]
hex = "0.4.3"
home = "0.5.9"
serde_json = "1.0.128"