mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-27 20:24:52 +03:00
24 lines
1.2 KiB
TOML
24 lines
1.2 KiB
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 = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-errors", version = "1.0.0", default-features = false }
|
|
snarkos-models = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-models", version = "1.0.0", default-features = false }
|
|
snarkos-utilities = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-utilities", version = "1.0.0" }
|
|
|
|
rand = { version = "0.7", default-features = false }
|
|
rand_xorshift = { version = "0.2", default-features = false }
|
|
thiserror = { version = "1.0" }
|
|
|
|
[dev-dependencies]
|
|
snarkos-utilities = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-utilities", version = "1.0.0" } |