mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-24 16:08:55 +03:00
56 lines
1.1 KiB
TOML
56 lines
1.1 KiB
TOML
[package]
|
|
name = "leo-gadgets"
|
|
version = "1.2.3"
|
|
authors = [ "The Aleo Team <hello@aleo.org>" ]
|
|
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" ]
|
|
license = "GPL-3.0"
|
|
edition = "2018"
|
|
|
|
[dependencies.snarkvm-fields]
|
|
version = "0.2.0"
|
|
default-features = false
|
|
|
|
[dependencies.snarkvm-gadgets]
|
|
version = "0.2.0"
|
|
default-features = false
|
|
|
|
[dependencies.snarkvm-r1cs]
|
|
version = "0.2.0"
|
|
default-features = false
|
|
|
|
[dependencies.snarkvm-utilities]
|
|
version = "0.2.0"
|
|
|
|
[dependencies.rand]
|
|
version = "0.8"
|
|
default-features = false
|
|
|
|
[dependencies.rand_xorshift]
|
|
version = "0.3"
|
|
default-features = false
|
|
|
|
[dependencies.thiserror]
|
|
version = "1.0"
|
|
|
|
[dev-dependencies.criterion]
|
|
version = "0.3"
|
|
|
|
[dev-dependencies.rand_core]
|
|
version = "0.6.2"
|
|
|
|
[[bench]]
|
|
name = "integer_arithmetic"
|
|
path = "benches/integer_arithmetic.rs"
|
|
harness = false
|