mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 23:23:50 +03:00
77 lines
1.3 KiB
TOML
77 lines
1.3 KiB
TOML
[package]
|
|
name = "leo-parser"
|
|
version = "1.5.3"
|
|
authors = [ "The Aleo Team <hello@aleo.org>" ]
|
|
description = "Leo parser"
|
|
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 = "2021"
|
|
rust-version = "1.56"
|
|
|
|
[[bench]]
|
|
name = "leo_ast"
|
|
path = "benches/leo_ast.rs"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
smallvec = "1.8"
|
|
|
|
[dependencies.leo-ast]
|
|
path = "../ast"
|
|
version = "1.5.3"
|
|
|
|
[dependencies.leo-errors]
|
|
path = "../../leo/errors"
|
|
version = "1.5.3"
|
|
|
|
[dependencies.leo-span]
|
|
path = "../../leo/span"
|
|
version = "1.5.3"
|
|
|
|
[dependencies.indexmap]
|
|
version = "1.8"
|
|
|
|
[dependencies.lazy_static]
|
|
version = "1.3.0"
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
features = [ "derive" ]
|
|
|
|
[dependencies.tendril]
|
|
version = "0.4"
|
|
|
|
[dependencies.tracing]
|
|
version = "0.1"
|
|
|
|
[dev-dependencies.leo-test-framework]
|
|
path = "../../tests/test-framework"
|
|
version = "1.4.0"
|
|
|
|
[dev-dependencies.criterion]
|
|
version = "0.3"
|
|
|
|
[dev-dependencies.serde_json]
|
|
version = "1.0"
|
|
features = [ "preserve_order" ]
|
|
|
|
[dev-dependencies.serde_yaml]
|
|
version = "0.8"
|
|
|
|
[dev-dependencies.structopt]
|
|
version = "0.3"
|
|
|
|
[features]
|
|
default = [ ]
|
|
ci_skip = [ ]
|