mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 23:23:50 +03:00
32 lines
606 B
TOML
32 lines
606 B
TOML
[package]
|
|
name = "leo-ast"
|
|
version = "0.1.0"
|
|
authors = ["The Aleo Team <hello@aleo.org>"]
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "leo_ast"
|
|
path = "src/main.rs"
|
|
|
|
[[bench]]
|
|
name = "ast"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
from-pest = { version = "0.3.1" }
|
|
lazy_static = { version = "1.3.0" }
|
|
log = { version = "0.4" }
|
|
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" }
|
|
thiserror = { version = "1.0" }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.3" }
|
|
|
|
[features]
|
|
default = []
|
|
ci_skip = []
|