2020-06-07 09:17:40 +03:00
|
|
|
[package]
|
2021-03-03 20:59:24 +03:00
|
|
|
name = "leo-parser"
|
2023-02-18 06:30:17 +03:00
|
|
|
version = "1.6.3"
|
2020-08-29 09:26:19 +03:00
|
|
|
authors = [ "The Aleo Team <hello@aleo.org>" ]
|
2022-12-01 00:31:33 +03:00
|
|
|
description = "Parser for the Leo programming language"
|
2020-08-21 12:54:04 +03:00
|
|
|
homepage = "https://aleo.org"
|
|
|
|
repository = "https://github.com/AleoHQ/leo"
|
2020-08-29 09:26:19 +03:00
|
|
|
keywords = [
|
|
|
|
"aleo",
|
|
|
|
"cryptography",
|
|
|
|
"leo",
|
|
|
|
"programming-language",
|
|
|
|
"zero-knowledge"
|
|
|
|
]
|
2022-12-01 00:31:33 +03:00
|
|
|
categories = [ "compilers", "cryptography", "web-programming" ]
|
2020-08-29 09:26:19 +03:00
|
|
|
include = [ "Cargo.toml", "src", "README.md", "LICENSE.md" ]
|
2020-08-21 12:54:04 +03:00
|
|
|
license = "GPL-3.0"
|
2022-01-21 23:04:37 +03:00
|
|
|
edition = "2021"
|
2022-12-01 00:31:33 +03:00
|
|
|
rust-version = "1.65"
|
2020-06-07 09:17:40 +03:00
|
|
|
|
2021-03-03 20:59:24 +03:00
|
|
|
[dependencies.leo-ast]
|
|
|
|
path = "../ast"
|
2023-02-18 06:30:17 +03:00
|
|
|
version = "1.6.3"
|
2020-08-22 02:40:34 +03:00
|
|
|
|
2021-07-31 05:01:12 +03:00
|
|
|
[dependencies.leo-errors]
|
2022-07-13 02:41:42 +03:00
|
|
|
path = "../../errors"
|
2023-02-18 06:30:17 +03:00
|
|
|
version = "1.6.3"
|
2021-07-31 05:01:12 +03:00
|
|
|
|
2022-01-21 23:32:09 +03:00
|
|
|
[dependencies.leo-span]
|
2022-07-13 02:37:10 +03:00
|
|
|
path = "../span"
|
2023-02-18 06:30:17 +03:00
|
|
|
version = "1.6.3"
|
2022-01-21 23:32:09 +03:00
|
|
|
|
2022-08-04 01:34:23 +03:00
|
|
|
[dependencies.snarkvm-console]
|
2022-12-01 00:31:33 +03:00
|
|
|
workspace = true
|
|
|
|
default-features = false
|
2022-11-15 05:56:09 +03:00
|
|
|
features = [ "account", "network" ]
|
2022-04-14 01:21:08 +03:00
|
|
|
|
2022-07-28 01:49:49 +03:00
|
|
|
[dependencies.clap]
|
|
|
|
version = "3.2"
|
2022-11-15 05:56:09 +03:00
|
|
|
features = [ "derive" ]
|
2022-07-28 01:49:49 +03:00
|
|
|
|
2022-01-27 23:57:52 +03:00
|
|
|
[dependencies.indexmap]
|
2022-07-12 00:10:22 +03:00
|
|
|
version = "1.9"
|
2022-01-27 23:57:52 +03:00
|
|
|
|
2020-08-29 09:26:19 +03:00
|
|
|
[dependencies.lazy_static]
|
|
|
|
version = "1.3.0"
|
|
|
|
|
|
|
|
[dependencies.serde]
|
|
|
|
version = "1.0"
|
|
|
|
features = [ "derive" ]
|
|
|
|
|
2022-04-29 23:09:27 +03:00
|
|
|
[dependencies.smallvec]
|
2022-10-03 13:15:01 +03:00
|
|
|
version = "1.10"
|
2022-04-29 23:09:27 +03:00
|
|
|
|
2020-08-29 09:26:19 +03:00
|
|
|
[dependencies.tracing]
|
|
|
|
version = "0.1"
|
|
|
|
|
2022-01-27 23:57:52 +03:00
|
|
|
[dev-dependencies.leo-test-framework]
|
2022-02-28 21:29:05 +03:00
|
|
|
path = "../../tests/test-framework"
|
2022-01-27 23:57:52 +03:00
|
|
|
version = "1.4.0"
|
2021-03-22 16:48:48 +03:00
|
|
|
|
2021-08-04 15:52:08 +03:00
|
|
|
[dev-dependencies.serde_json]
|
|
|
|
version = "1.0"
|
2021-09-29 17:56:28 +03:00
|
|
|
features = [ "preserve_order" ]
|
2021-08-04 15:52:08 +03:00
|
|
|
|
2021-03-30 01:45:10 +03:00
|
|
|
[dev-dependencies.serde_yaml]
|
|
|
|
version = "0.8"
|
|
|
|
|
2020-08-03 05:57:28 +03:00
|
|
|
[features]
|
2020-08-29 09:26:19 +03:00
|
|
|
default = [ ]
|
|
|
|
ci_skip = [ ]
|