mirror of
https://github.com/fluencelabs/lazy-snark
synced 2025-04-24 14:32:14 +00:00
29 lines
577 B
TOML
29 lines
577 B
TOML
[package]
|
|
authors = ["Alexander Drygin <dryginalexander@gmail.com>"]
|
|
name = "verifier"
|
|
version = "0.0.1"
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "proof"
|
|
path = "src/lib.rs"
|
|
crate-type = ["cdylib"]
|
|
|
|
[profile.release]
|
|
debug = false
|
|
lto = true
|
|
opt-level = "z"
|
|
panic = "abort"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.38"
|
|
linked-hash-map = "0.5.1"
|
|
log = "0.4"
|
|
fluence = { version = "0.1.5", features = ["wasm_logger"] }
|
|
|
|
hex = "0.3.2"
|
|
byteorder = "1.3.2"
|
|
bellman = { git = 'https://github.com/matterinc/bellman', tag = "0.2.0" }
|