leo/compiler/Cargo.toml

47 lines
1.7 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.0"
2020-04-24 04:33:43 +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"
keywords = ["aleo", "cryptography", "leo", "programming-language", "zero-knowledge"]
categories = ["cryptography::cryptocurrencies", "web-programming"]
include = ["Cargo.toml", "src", "README.md", "LICENSE.md"]
license = "GPL-3.0"
2020-04-24 04:33:43 +03:00
edition = "2018"
[dependencies]
leo-ast = { path = "../ast", version = "1.0.0" }
leo-gadgets = { path = "../gadgets", version = "1.0.0" }
leo-input = { path = "../input", version = "1.0.0" }
leo-package = { path = "../package", version = "1.0.0"}
leo-typed = { path = "../typed", version = "1.0.0" }
leo-state = { path = "../state", version = "1.0.0" }
2020-06-07 09:17:40 +03:00
2020-08-21 15:09:48 +03:00
snarkos-curves = { version = "1.0.0", default-features = false }
snarkos-dpc = { version = "1.0.0", default-features = false }
snarkos-errors = { version = "1.0.0", default-features = false }
snarkos-gadgets = { version = "1.0.0", default-features = false }
snarkos-models = { version = "1.0.0", default-features = false }
snarkos-objects = { version = "1.0.0", default-features = false }
snarkos-utilities = { version = "1.0.0" }
2020-04-24 04:33:43 +03:00
2020-06-25 07:05:11 +03:00
bincode = { version = "1.0" }
hex = { version = "0.4.2" }
2020-06-17 05:13:11 +03:00
pest = { version = "2.0" }
2020-04-24 04:33:43 +03:00
rand = { version = "0.7" }
2020-07-17 22:44:08 +03:00
rand_xorshift = { version = "0.2", default-features = false }
serde = { version = "1.0" }
sha2 = { version = "0.9" }
thiserror = { version = "1.0" }
2020-08-22 01:49:51 +03:00
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.2" }
2020-07-17 22:44:08 +03:00
[dev-dependencies]
2020-08-03 05:57:28 +03:00
num-bigint = { version = "0.3" }
[features]
default = []
2020-08-03 06:56:22 +03:00
ci_skip = ["leo-ast/ci_skip", "leo-typed/ci_skip"]