mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-10 13:24:15 +03:00
70 lines
1.3 KiB
TOML
70 lines
1.3 KiB
TOML
[package]
|
|
name = "leo-parser"
|
|
version = "1.9.4"
|
|
authors = [ "The Aleo Team <hello@aleo.org>" ]
|
|
description = "Parser for the Leo programming language"
|
|
homepage = "https://aleo.org"
|
|
repository = "https://github.com/AleoHQ/leo"
|
|
keywords = [
|
|
"aleo",
|
|
"cryptography",
|
|
"leo",
|
|
"programming-language",
|
|
"zero-knowledge"
|
|
]
|
|
categories = [ "compilers", "cryptography", "web-programming" ]
|
|
include = [ "Cargo.toml", "src", "README.md", "LICENSE.md" ]
|
|
license = "GPL-3.0"
|
|
edition = "2021"
|
|
rust-version = "1.69"
|
|
|
|
[dependencies.leo-ast]
|
|
path = "../ast"
|
|
version = "=1.9.4"
|
|
|
|
[dependencies.leo-errors]
|
|
path = "../../errors"
|
|
version = "=1.9.4"
|
|
|
|
[dependencies.leo-span]
|
|
path = "../span"
|
|
version = "=1.9.4"
|
|
|
|
[dependencies.snarkvm-console]
|
|
workspace = true
|
|
features = [ "account", "network" ]
|
|
|
|
[dependencies.clap]
|
|
version = "4.4"
|
|
features = [ "derive" ]
|
|
|
|
[dependencies.indexmap]
|
|
version = "1.9"
|
|
|
|
[dependencies.lazy_static]
|
|
version = "1.3.0"
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
features = [ "derive" ]
|
|
|
|
[dependencies.smallvec]
|
|
version = "1.11"
|
|
|
|
[dependencies.tracing]
|
|
version = "0.1"
|
|
|
|
[dev-dependencies.leo-test-framework]
|
|
path = "../../tests/test-framework"
|
|
|
|
[dev-dependencies.serde_json]
|
|
version = "1.0"
|
|
features = [ "preserve_order" ]
|
|
|
|
[dev-dependencies.serde_yaml]
|
|
version = "0.8"
|
|
|
|
[features]
|
|
default = [ ]
|
|
ci_skip = [ ]
|