leo/input/Cargo.toml

26 lines
1.3 KiB
TOML
Raw Normal View History

2020-05-06 22:29:33 +03:00
[package]
2020-08-01 04:49:01 +03:00
name = "leo-input"
version = "1.0.0"
2020-05-06 22:29:33 +03:00
authors = ["The Aleo Team <hello@aleo.org>"]
2020-08-21 12:54:04 +03:00
description = "Input parser 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"
2020-05-06 22:29:33 +03:00
edition = "2018"
[dependencies]
2020-08-21 13:07:15 +03:00
snarkos-algorithms = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-algorithms", version = "1.0.0", default-features = false }
snarkos-curves = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-curves", version = "1.0.0", default-features = false }
snarkos-errors = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-errors", version = "1.0.0", default-features = false }
snarkos-gadgets = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-gadgets", 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 }
2020-05-06 22:29:33 +03:00
from-pest = { version = "0.3.1" }
pest = { version = "2.0" }
pest-ast = { version = "0.3.3" }
2020-06-08 22:24:15 +03:00
pest_derive = { version = "2.0" }
thiserror = { version = "1.0" }