2020-06-08 04:22:59 +03:00
|
|
|
[package]
|
2020-08-03 06:56:22 +03:00
|
|
|
name = "leo-typed"
|
2020-08-19 13:00:30 +03:00
|
|
|
version = "1.0.0"
|
2020-06-08 04:22:59 +03:00
|
|
|
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"
|
2020-06-08 04:22:59 +03:00
|
|
|
edition = "2018"
|
|
|
|
|
2020-07-31 10:24:21 +03:00
|
|
|
[[bin]]
|
2020-08-03 06:56:22 +03:00
|
|
|
name = "leo_typed_ast"
|
2020-07-31 10:24:21 +03:00
|
|
|
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
|
|
|
|
|
2020-06-08 04:22:59 +03:00
|
|
|
[dependencies]
|
2020-08-19 13:00:30 +03:00
|
|
|
leo-ast = { path = "../ast", version = "1.0.0" }
|
|
|
|
leo-input = { path = "../input", version = "1.0.0" }
|
2020-06-08 04:22:59 +03:00
|
|
|
|
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-08 04:22:59 +03:00
|
|
|
|
2020-06-17 05:13:11 +03:00
|
|
|
pest = { version = "2.0" }
|
2020-06-25 02:02:20 +03:00
|
|
|
serde = { version = "1.0" }
|
2020-07-31 10:24:21 +03:00
|
|
|
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"]
|