leo/typed/Cargo.toml

40 lines
1.0 KiB
TOML
Raw Normal View History

[package]
2020-08-03 06:56:22 +03:00
name = "leo-typed"
version = "1.0.0"
authors = ["The Aleo Team <hello@aleo.org>"]
2020-08-21 12:54:04 +03:00
description = "Typed 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"
edition = "2018"
[[bin]]
2020-08-03 06:56:22 +03:00
name = "leo_typed_ast"
path = "src/main.rs"
2020-08-03 06:33:05 +03:00
[[bench]]
name = "typed_ast"
2020-08-21 13:09:09 +03:00
path = "benches/typed_ast.rs"
2020-08-03 06:33:05 +03:00
harness = false
[dependencies]
leo-ast = { path = "../ast", version = "1.0.0" }
leo-input = { path = "../input", version = "1.0.0" }
2020-08-27 10:55:29 +03:00
snarkos-errors = { version = "1.1.3", default-features = false }
snarkos-models = { version = "1.1.3", default-features = false }
2020-06-17 05:13:11 +03:00
pest = { version = "2.0" }
serde = { version = "1.0" }
serde_json = { version = "1.0" }
2020-08-03 05:57:28 +03:00
2020-08-03 06:33:05 +03:00
[dev-dependencies]
criterion = { version = "0.3" }
2020-08-03 05:57:28 +03:00
[features]
default = []
ci_skip = ["leo-ast/ci_skip"]