2021-02-27 19:48:20 +03:00
|
|
|
[package]
|
|
|
|
name = "leo-synthesizer"
|
2021-06-22 00:28:28 +03:00
|
|
|
version = "1.5.2"
|
2021-02-27 19:48:20 +03:00
|
|
|
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]
|
2021-06-28 22:01:01 +03:00
|
|
|
version = "0.6.0"
|
2021-02-27 19:48:20 +03:00
|
|
|
default-features = false
|
|
|
|
|
2021-03-04 21:42:34 +03:00
|
|
|
[dependencies.snarkvm-fields]
|
2021-06-28 13:19:42 +03:00
|
|
|
version = "0.6.0"
|
2021-03-04 21:42:34 +03:00
|
|
|
default-features = false
|
|
|
|
|
2021-03-04 21:48:48 +03:00
|
|
|
[dependencies.snarkvm-gadgets]
|
2021-06-28 22:01:01 +03:00
|
|
|
version = "0.6.0"
|
2021-03-04 21:48:48 +03:00
|
|
|
|
2021-03-04 21:46:47 +03:00
|
|
|
[dependencies.snarkvm-r1cs]
|
2021-06-28 22:01:01 +03:00
|
|
|
version = "0.6.0"
|
2021-03-04 21:46:47 +03:00
|
|
|
default-features = false
|
|
|
|
|
2021-02-27 19:48:20 +03:00
|
|
|
[dependencies.num-bigint]
|
2021-03-09 02:39:44 +03:00
|
|
|
version = "0.4"
|
2021-02-27 19:48:20 +03:00
|
|
|
|
|
|
|
[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.9"
|
|
|
|
|
|
|
|
[dependencies.hex]
|
|
|
|
version = "0.4"
|