mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-24 07:48:04 +03:00
24 lines
870 B
TOML
24 lines
870 B
TOML
[package]
|
|
name = "leo-gadgets"
|
|
version = "1.0.0"
|
|
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]
|
|
snarkos-errors = { version = "1.1.3", default-features = false }
|
|
snarkos-models = { version = "1.1.3", default-features = false }
|
|
snarkos-utilities = { version = "1.1.3" }
|
|
|
|
rand = { version = "0.7", default-features = false }
|
|
rand_xorshift = { version = "0.2", default-features = false }
|
|
thiserror = { version = "1.0" }
|
|
|
|
[dev-dependencies]
|
|
snarkos-utilities = { version = "1.1.3" } |