2020-04-24 04:33:43 +03:00
|
|
|
[package]
|
2020-04-27 08:34:15 +03:00
|
|
|
name = "leo-compiler"
|
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>" ]
|
2020-08-21 12:54:04 +03:00
|
|
|
description = "Compiler of the Leo programming language"
|
|
|
|
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"
|
|
|
|
rust-version = "1.56.1"
|
2020-04-24 04:33:43 +03:00
|
|
|
|
2020-10-31 03:31:09 +03:00
|
|
|
[dependencies.leo-ast]
|
|
|
|
path = "../ast"
|
2021-07-30 04:59:08 +03:00
|
|
|
version = "1.5.3"
|
2020-10-24 01:23:48 +03:00
|
|
|
|
2021-07-31 05:01:12 +03:00
|
|
|
[dependencies.leo-errors]
|
|
|
|
path = "../errors"
|
|
|
|
version = "1.5.3"
|
|
|
|
|
2021-03-03 20:59:24 +03:00
|
|
|
[dependencies.leo-parser]
|
|
|
|
path = "../parser"
|
2021-07-30 04:59:08 +03:00
|
|
|
version = "1.5.3"
|
2021-03-03 20:59:24 +03:00
|
|
|
|
2022-02-07 19:37:57 +03:00
|
|
|
[dependencies.sha2]
|
|
|
|
version = "0.10"
|
|
|
|
|
2020-08-03 05:57:28 +03:00
|
|
|
[features]
|
2020-08-29 09:26:19 +03:00
|
|
|
default = [ ]
|
2021-03-03 20:59:24 +03:00
|
|
|
ci_skip = [ "leo-ast/ci_skip" ]
|