2020-03-10 06:55:41 +03:00
|
|
|
[package]
|
2020-08-21 14:41:13 +03:00
|
|
|
name = "leo-lang"
|
2020-08-19 13:00:30 +03:00
|
|
|
version = "1.0.0"
|
2020-04-21 07:34:15 +03:00
|
|
|
authors = ["The Aleo Team <hello@aleo.org>"]
|
2020-08-21 12:54:04 +03:00
|
|
|
description = "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"]
|
2020-08-21 14:33:01 +03:00
|
|
|
include = ["Cargo.toml", "leo", "README.md", "LICENSE.md"]
|
2020-08-21 12:54:04 +03:00
|
|
|
license = "GPL-3.0"
|
2020-03-10 06:55:41 +03:00
|
|
|
edition = "2018"
|
|
|
|
|
2020-03-24 01:19:47 +03:00
|
|
|
[lib]
|
2020-04-24 09:57:05 +03:00
|
|
|
path = "leo/lib.rs"
|
2020-03-24 01:19:47 +03:00
|
|
|
|
|
|
|
[[bin]]
|
2020-04-21 07:34:15 +03:00
|
|
|
name = "leo"
|
2020-04-24 09:57:05 +03:00
|
|
|
path = "leo/main.rs"
|
2020-04-24 04:33:43 +03:00
|
|
|
|
|
|
|
[workspace]
|
2020-08-12 09:51:56 +03:00
|
|
|
members = [ "ast", "compiler", "gadgets", "input", "linter", "package", "typed", "state"]
|
2020-03-24 01:19:47 +03:00
|
|
|
|
2020-03-10 06:55:41 +03:00
|
|
|
[dependencies]
|
2020-08-21 14:31:34 +03:00
|
|
|
leo-compiler = { path = "./compiler", 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-state = { path = "./state", version = "1.0.0" }
|
2020-04-25 11:47:10 +03:00
|
|
|
|
2020-08-21 15:09:48 +03:00
|
|
|
snarkos-algorithms = { version = "1.0.0", default-features = false }
|
|
|
|
snarkos-curves = { 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-utilities = { version = "1.0.0" }
|
2020-03-13 20:02:39 +03:00
|
|
|
|
2020-08-14 13:38:53 +03:00
|
|
|
clap = { version = "2.33.3" }
|
2020-07-14 13:39:50 +03:00
|
|
|
colored = { version = "2.0" }
|
2020-08-16 04:54:46 +03:00
|
|
|
dirs = { version = "3.0.1" }
|
2020-08-18 15:43:37 +03:00
|
|
|
console = { version = "0.12.0" }
|
|
|
|
dotenv = { version = "0.15.0" }
|
2020-04-25 11:47:10 +03:00
|
|
|
env_logger = { version = "0.7" }
|
2020-04-21 08:12:09 +03:00
|
|
|
from-pest = { version = "0.3.1" }
|
2020-08-08 21:12:52 +03:00
|
|
|
lazy_static = { version = "1.4.0" }
|
2020-08-12 15:44:56 +03:00
|
|
|
notify= { version = "4.0.15" }
|
2020-08-10 21:46:45 +03:00
|
|
|
num-bigint = { version = "0.3" }
|
2020-04-21 08:12:09 +03:00
|
|
|
rand = { version = "0.7" }
|
2020-04-24 09:57:05 +03:00
|
|
|
rand_core = { version = "0.5.1" }
|
2020-08-08 21:12:52 +03:00
|
|
|
reqwest = { version = "0.10.7", features = ["blocking", "json"] }
|
2020-08-21 11:49:34 +03:00
|
|
|
self_update = { version = "0.19.0", features = ["archive-zip"] }
|
2020-04-24 09:57:05 +03:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0" }
|
2020-05-10 01:34:54 +03:00
|
|
|
thiserror = { version = "1.0" }
|
2020-08-22 01:49:51 +03:00
|
|
|
toml = { version = "0.5" }
|
|
|
|
tracing = { version = "0.1" }
|
|
|
|
tracing-subscriber = { version = "0.2" }
|
2020-08-17 03:36:31 +03:00
|
|
|
zip = { version = "0.5" }
|
2020-06-08 09:01:57 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-06-29 23:12:50 +03:00
|
|
|
rusty-hook = { version = "0.11.2" }
|
2020-06-08 09:01:57 +03:00
|
|
|
|
2020-08-03 05:57:28 +03:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
ci_skip = ["leo-compiler/ci_skip"]
|
|
|
|
|
2020-06-08 09:01:57 +03:00
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
lto = "thin"
|
|
|
|
incremental = true
|
|
|
|
|
|
|
|
[profile.bench]
|
|
|
|
opt-level = 3
|
|
|
|
debug = false
|
|
|
|
rpath = false
|
|
|
|
lto = "thin"
|
|
|
|
incremental = true
|
|
|
|
debug-assertions = false
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = 0
|
|
|
|
|
|
|
|
[profile.test]
|
|
|
|
opt-level = 0
|
|
|
|
debug-assertions = true
|
|
|
|
debug = true
|