2021-08-19 04:52:56 +03:00
|
|
|
[package]
|
2022-04-23 00:14:18 +03:00
|
|
|
name = "leo-passes"
|
2023-09-08 20:18:21 +03:00
|
|
|
version = "1.9.4"
|
2021-08-19 04:52:56 +03:00
|
|
|
authors = [ "The Aleo Team <hello@aleo.org>" ]
|
2022-12-01 00:31:33 +03:00
|
|
|
description = "Compiler passes for the Leo programming language"
|
2021-08-19 04:52:56 +03:00
|
|
|
homepage = "https://aleo.org"
|
|
|
|
repository = "https://github.com/AleoHQ/leo"
|
|
|
|
keywords = [
|
|
|
|
"aleo",
|
|
|
|
"cryptography",
|
|
|
|
"leo",
|
|
|
|
"programming-language",
|
|
|
|
"zero-knowledge"
|
|
|
|
]
|
2022-12-01 00:31:33 +03:00
|
|
|
categories = [ "compilers", "cryptography", "web-programming" ]
|
2021-08-19 04:52:56 +03:00
|
|
|
include = [ "Cargo.toml", "src", "README.md", "LICENSE.md" ]
|
|
|
|
license = "GPL-3.0"
|
2022-01-21 23:04:37 +03:00
|
|
|
edition = "2021"
|
2023-05-13 00:42:15 +03:00
|
|
|
rust-version = "1.69"
|
2021-08-19 04:52:56 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2023-04-16 02:31:12 +03:00
|
|
|
[dependencies.snarkvm-console]
|
|
|
|
workspace = true
|
|
|
|
features = [ "network" ]
|
2021-08-19 04:52:56 +03:00
|
|
|
|
|
|
|
[dependencies.leo-ast]
|
|
|
|
path = "../ast"
|
2023-09-08 20:18:21 +03:00
|
|
|
version = "=1.9.4"
|
2021-08-19 04:52:56 +03:00
|
|
|
|
|
|
|
[dependencies.leo-errors]
|
2022-07-13 02:41:42 +03:00
|
|
|
path = "../../errors"
|
2023-09-08 20:18:21 +03:00
|
|
|
version = "=1.9.4"
|
2021-08-19 04:52:56 +03:00
|
|
|
|
|
|
|
[dependencies.leo-parser]
|
|
|
|
path = "../parser"
|
2023-09-08 20:18:21 +03:00
|
|
|
version = "=1.9.4"
|
2021-09-10 15:55:07 +03:00
|
|
|
|
2022-02-16 20:49:45 +03:00
|
|
|
[dependencies.leo-span]
|
2022-07-13 02:37:10 +03:00
|
|
|
path = "../span"
|
2023-09-08 20:18:21 +03:00
|
|
|
version = "=1.9.4"
|
2022-05-26 02:19:56 +03:00
|
|
|
|
2023-04-16 02:31:12 +03:00
|
|
|
[dependencies.indexmap]
|
|
|
|
version = "1.9"
|
|
|
|
|
2022-06-07 05:42:11 +03:00
|
|
|
[dependencies.itertools]
|
2023-06-24 03:07:51 +03:00
|
|
|
version = "0.11.0"
|
2022-07-15 11:50:14 +03:00
|
|
|
|
|
|
|
[dependencies.num-traits]
|
2023-07-22 03:07:00 +03:00
|
|
|
version = "0.2.16"
|
2023-09-06 01:05:43 +03:00
|
|
|
|
|
|
|
[dependencies.serde]
|
|
|
|
version = "1.0"
|
|
|
|
features = [ "derive", "rc" ]
|
|
|
|
|
|
|
|
[dependencies.serde_json]
|
|
|
|
version = "1.0"
|
|
|
|
features = [ "preserve_order" ]
|