2020-06-07 09:17:40 +03:00
|
|
|
[package]
|
2021-03-03 20:59:24 +03:00
|
|
|
name = "leo-parser"
|
2021-07-30 04:59:08 +03:00
|
|
|
version = "1.5.3"
|
2020-08-29 09:26:19 +03:00
|
|
|
authors = [ "The Aleo Team <hello@aleo.org>" ]
|
2022-02-22 03:10:50 +03:00
|
|
|
description = "Leo parser"
|
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"
|
|
|
|
]
|
|
|
|
categories = [ "cryptography::cryptocurrencies", "web-programming" ]
|
|
|
|
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-01-21 23:32:09 +03:00
|
|
|
rust-version = "1.56"
|
2020-06-07 09:17:40 +03:00
|
|
|
|
2020-08-03 06:33:05 +03:00
|
|
|
[[bench]]
|
2021-03-03 20:59:24 +03:00
|
|
|
name = "leo_ast"
|
|
|
|
path = "benches/leo_ast.rs"
|
2020-08-03 06:33:05 +03:00
|
|
|
harness = false
|
|
|
|
|
2021-03-03 20:59:24 +03:00
|
|
|
[dependencies.leo-ast]
|
|
|
|
path = "../ast"
|
2021-07-30 04:59:08 +03:00
|
|
|
version = "1.5.3"
|
2020-08-22 02:40:34 +03:00
|
|
|
|
2021-07-31 05:01:12 +03:00
|
|
|
[dependencies.leo-errors]
|
2022-02-23 02:12:52 +03:00
|
|
|
path = "../../leo/errors"
|
2021-07-31 05:01:12 +03:00
|
|
|
version = "1.5.3"
|
|
|
|
|
2022-01-21 23:32:09 +03:00
|
|
|
[dependencies.leo-span]
|
2022-02-23 02:12:52 +03:00
|
|
|
path = "../../leo/span"
|
2022-01-21 23:32:09 +03:00
|
|
|
version = "1.5.3"
|
|
|
|
|
2022-04-14 01:21:08 +03:00
|
|
|
[dependencies.snarkvm-dpc]
|
|
|
|
git = "https://github.com/AleoHQ/snarkVM.git"
|
|
|
|
rev = "85b7a79"
|
|
|
|
|
2022-01-27 23:57:52 +03:00
|
|
|
[dependencies.indexmap]
|
|
|
|
version = "1.8"
|
|
|
|
|
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]
|
|
|
|
version = "1.8"
|
|
|
|
|
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-04-09 23:45:30 +03:00
|
|
|
[dev-dependencies.criterion]
|
|
|
|
version = "0.3"
|
|
|
|
|
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"
|
|
|
|
|
2022-02-22 12:56:01 +03:00
|
|
|
[dev-dependencies.structopt]
|
|
|
|
version = "0.3"
|
|
|
|
|
2020-08-03 05:57:28 +03:00
|
|
|
[features]
|
2020-08-29 09:26:19 +03:00
|
|
|
default = [ ]
|
|
|
|
ci_skip = [ ]
|