leo/gadgets/Cargo.toml

49 lines
1006 B
TOML
Raw Normal View History

[package]
name = "leo-gadgets"
version = "1.2.2"
authors = [ "The Aleo Team <hello@aleo.org>" ]
2020-08-21 12:54:04 +03:00
description = "Gadgets 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" ]
2020-08-21 12:54:04 +03:00
license = "GPL-3.0"
edition = "2018"
2020-12-30 19:40:45 +03:00
[dependencies.snarkvm-errors]
2021-02-12 04:33:53 +03:00
version = "0.0.4"
default-features = false
2020-12-30 19:40:45 +03:00
[dependencies.snarkvm-models]
2021-02-12 04:33:53 +03:00
version = "0.0.4"
default-features = false
2020-07-10 12:07:00 +03:00
2020-12-30 19:40:45 +03:00
[dependencies.snarkvm-utilities]
2021-02-12 04:33:53 +03:00
version = "0.0.4"
[dependencies.rand]
version = "0.7"
default-features = false
[dependencies.rand_xorshift]
version = "0.2"
default-features = false
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.criterion]
version = "0.3"
[[bench]]
name = "integer_arithmetic"
path = "benches/integer_arithmetic.rs"
harness = false