leo/compiler/Cargo.toml

137 lines
2.6 KiB
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.0.7"
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"
2020-04-24 04:33:43 +03:00
edition = "2018"
2020-10-31 03:31:09 +03:00
[dependencies.leo-ast]
path = "../ast"
version = "1.0.7"
2020-10-24 01:23:48 +03:00
2020-10-31 03:36:48 +03:00
[dependencies.leo-core]
path = "../core"
version = "1.0.7"
2020-10-30 23:02:44 +03:00
[dependencies.leo-gadgets]
path = "../gadgets"
version = "1.0.7"
2020-10-31 03:17:17 +03:00
[dependencies.leo-grammar]
path = "../grammar"
version = "1.0.7"
2020-10-31 03:17:17 +03:00
2020-09-18 22:26:51 +03:00
[dependencies.leo-imports]
path = "../imports"
version = "1.0.7"
2020-09-18 22:26:51 +03:00
[dependencies.leo-input]
path = "../input"
version = "1.0.7"
[dependencies.leo-package]
path = "../package"
version = "1.0.7"
[dependencies.leo-state]
path = "../state"
version = "1.0.7"
2020-11-12 01:57:39 +03:00
[dependencies.leo-symbol-table]
path = "../symbol-table"
version = "1.0.7"
2020-10-24 01:23:48 +03:00
2020-11-12 21:28:24 +03:00
[dependencies.leo-type-inference]
path = "../type-inference"
version = "1.0.7"
[dependencies.snarkos-curves]
git = "https://github.com/AleoHQ/snarkOS.git"
version = "1.1.4"
default-features = false
[dependencies.snarkos-dpc]
git = "https://github.com/AleoHQ/snarkOS.git"
version = "1.1.4"
default-features = false
[dependencies.snarkos-errors]
git = "https://github.com/AleoHQ/snarkOS.git"
version = "1.1.4"
default-features = false
[dependencies.snarkos-gadgets]
git = "https://github.com/AleoHQ/snarkOS.git"
version = "1.1.4"
default-features = false
[dependencies.snarkos-models]
git = "https://github.com/AleoHQ/snarkOS.git"
version = "1.1.4"
default-features = false
[dependencies.snarkos-objects]
git = "https://github.com/AleoHQ/snarkOS.git"
version = "1.1.4"
default-features = false
[dependencies.snarkos-utilities]
git = "https://github.com/AleoHQ/snarkOS.git"
version = "1.1.4"
[dependencies.bincode]
version = "1.0"
[dependencies.hex]
version = "0.4.2"
2020-12-07 20:18:20 +03:00
[dependencies.indexmap]
version = "1.6.1"
features = [ "serde-1" ]
2020-12-07 20:18:20 +03:00
[dependencies.pest]
version = "2.0"
[dependencies.rand]
version = "0.7"
[dependencies.rand_xorshift]
version = "0.2"
default-features = false
[dependencies.serde]
version = "1.0"
[dependencies.sha2]
version = "0.9"
[dependencies.thiserror]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.num-bigint]
version = "0.3"
2020-08-03 05:57:28 +03:00
[dev-dependencies.snarkos-algorithms]
git = "https://github.com/AleoHQ/snarkOS.git"
version = "1.1.4"
default-features = false
2020-08-03 05:57:28 +03:00
[features]
default = [ ]
2020-10-31 03:31:09 +03:00
ci_skip = [ "leo-grammar/ci_skip", "leo-ast/ci_skip" ]