leo/synthesizer/Cargo.toml

62 lines
1.3 KiB
TOML
Raw Normal View History

[package]
name = "leo-synthesizer"
version = "1.5.3"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "Circuit synthesizer of the Leo programming language"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/leo"
keywords = [
"aleo",
"cryptography",
"leo",
"programming-language",
"zero-knowledge"
]
categories = [ "cryptography::cryptocurrencies", "web-programming" ]
include = [ "Cargo.toml", "src", "README.md", "LICENSE.md" ]
license = "GPL-3.0"
edition = "2018"
[dependencies.snarkvm-curves]
2022-01-12 03:22:34 +03:00
git = "https://github.com/AleoHQ/snarkVM.git"
2022-01-18 03:07:31 +03:00
rev = "435f112"
default-features = false
2021-07-31 05:01:12 +03:00
[dependencies.leo-errors]
path = "../errors"
version = "1.5.3"
2021-03-04 21:42:34 +03:00
[dependencies.snarkvm-fields]
2022-01-12 03:22:34 +03:00
git = "https://github.com/AleoHQ/snarkVM.git"
2022-01-18 03:07:31 +03:00
rev = "435f112"
2021-03-04 21:42:34 +03:00
default-features = false
2021-03-04 21:48:48 +03:00
[dependencies.snarkvm-gadgets]
2022-01-12 03:22:34 +03:00
git = "https://github.com/AleoHQ/snarkVM.git"
2022-01-18 03:07:31 +03:00
rev = "435f112"
2021-03-04 21:48:48 +03:00
2021-03-04 21:46:47 +03:00
[dependencies.snarkvm-r1cs]
2022-01-12 03:22:34 +03:00
git = "https://github.com/AleoHQ/snarkVM.git"
2022-01-18 03:07:31 +03:00
rev = "435f112"
2021-03-04 21:46:47 +03:00
default-features = false
[dependencies.eyre]
version = "0.6.6"
default-features = false
[dependencies.num-bigint]
version = "0.4"
[dependencies.serde]
version = "1.0"
features = [ "derive" ]
[dependencies.serde_json]
version = "1.0"
2021-04-20 04:08:14 +03:00
[dependencies.sha2]
version = "0.10"
2021-04-20 04:08:14 +03:00
[dependencies.hex]
version = "0.4"