leo/ast/Cargo.toml

39 lines
964 B
TOML
Raw Normal View History

2020-06-07 09:17:40 +03:00
[package]
name = "leo-ast"
version = "1.0.0"
2020-06-07 09:23:26 +03:00
authors = ["The Aleo Team <hello@aleo.org>"]
2020-08-21 12:54:04 +03:00
description = "AST 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-06-07 09:17:40 +03:00
edition = "2018"
2020-07-29 08:26:28 +03:00
[[bin]]
name = "leo_ast"
path = "src/main.rs"
2020-08-03 06:33:05 +03:00
[[bench]]
name = "ast"
harness = false
2020-06-07 09:17:40 +03:00
[dependencies]
from-pest = { version = "0.3.1" }
lazy_static = { version = "1.3.0" }
2020-06-07 09:23:26 +03:00
log = { version = "0.4" }
2020-06-07 09:17:40 +03:00
pest = { version = "2.0" }
pest-ast = { version = "0.3.3" }
pest_derive = { version = "2.0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
2020-06-07 09:23:26 +03:00
thiserror = { version = "1.0" }
[dev-dependencies]
2020-08-03 05:57:28 +03:00
criterion = { version = "0.3" }
[features]
default = []
ci_skip = []