2021-08-19 04:52:56 +03:00
|
|
|
[package]
|
2022-04-23 00:14:18 +03:00
|
|
|
name = "leo-passes"
|
2022-12-13 03:31:56 +03:00
|
|
|
version = "1.6.2"
|
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"
|
2022-12-01 00:31:33 +03:00
|
|
|
rust-version = "1.65"
|
2021-08-19 04:52:56 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2022-07-12 00:10:22 +03:00
|
|
|
[dependencies.indexmap]
|
|
|
|
version = "1.9"
|
2021-08-19 04:52:56 +03:00
|
|
|
|
|
|
|
[dependencies.leo-ast]
|
|
|
|
path = "../ast"
|
2022-12-13 03:31:56 +03:00
|
|
|
version = "1.6.2"
|
2021-08-19 04:52:56 +03:00
|
|
|
|
|
|
|
[dependencies.leo-errors]
|
2022-07-13 02:41:42 +03:00
|
|
|
path = "../../errors"
|
2022-12-13 03:31:56 +03:00
|
|
|
version = "1.6.2"
|
2021-08-19 04:52:56 +03:00
|
|
|
|
|
|
|
[dependencies.leo-parser]
|
|
|
|
path = "../parser"
|
2022-12-13 03:31:56 +03:00
|
|
|
version = "1.6.2"
|
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"
|
2022-12-13 03:31:56 +03:00
|
|
|
version = "1.6.2"
|
2022-05-26 02:19:56 +03:00
|
|
|
|
2022-06-02 18:22:08 +03:00
|
|
|
[dependencies.leo-core]
|
|
|
|
path = "../core"
|
2022-12-13 03:31:56 +03:00
|
|
|
version = "1.6.2"
|
2022-06-07 05:42:11 +03:00
|
|
|
|
|
|
|
[dependencies.itertools]
|
2022-09-21 13:19:41 +03:00
|
|
|
version = "0.10.5"
|
2022-07-15 11:50:14 +03:00
|
|
|
|
|
|
|
[dependencies.num-traits]
|
2022-11-15 05:56:09 +03:00
|
|
|
version = "0.2.15"
|