leo/compiler/Cargo.toml

36 lines
761 B
TOML
Raw Normal View History

2020-04-24 04:33:43 +03:00
[package]
2020-04-27 08:34:15 +03:00
name = "leo-compiler"
version = "1.5.3"
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"
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"
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"
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"
version = "1.5.3"
2021-03-03 20:59:24 +03:00
2020-08-03 05:57:28 +03:00
[features]
default = [ ]
2021-03-03 20:59:24 +03:00
ci_skip = [ "leo-ast/ci_skip" ]