2020-03-10 06:55:41 +03:00
|
|
|
[package]
|
2020-04-21 07:34:15 +03:00
|
|
|
name = "leo"
|
2020-03-10 06:55:41 +03:00
|
|
|
version = "0.1.0"
|
2020-04-21 07:34:15 +03:00
|
|
|
authors = ["The Aleo Team <hello@aleo.org>"]
|
2020-03-10 06:55:41 +03:00
|
|
|
edition = "2018"
|
|
|
|
|
2020-03-24 01:19:47 +03:00
|
|
|
[lib]
|
2020-04-21 07:34:15 +03:00
|
|
|
name = "leo"
|
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-03 04:51:44 +03:00
|
|
|
members = [ "ast", "compiler", "gadgets", "leo-input", "linter", "types" ]
|
2020-03-24 01:19:47 +03:00
|
|
|
|
2020-03-10 06:55:41 +03:00
|
|
|
[dependencies]
|
2020-04-27 08:34:15 +03:00
|
|
|
leo-compiler = { path = "compiler", version = "0.1.0" }
|
2020-07-10 08:39:11 +03:00
|
|
|
leo-gadgets = { path = "gadgets", version = "0.1.0" }
|
2020-08-01 04:49:01 +03:00
|
|
|
leo-input = { path = "leo-input", version = "0.1.0" }
|
2020-04-25 11:47:10 +03:00
|
|
|
|
2020-07-31 05:09:27 +03:00
|
|
|
snarkos-algorithms = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-algorithms", default-features = false }
|
|
|
|
snarkos-curves = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-curves", default-features = false }
|
|
|
|
snarkos-errors = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-errors", default-features = false }
|
|
|
|
snarkos-gadgets = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-gadgets", default-features = false }
|
|
|
|
snarkos-models = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-models", default-features = false }
|
|
|
|
snarkos-utilities = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-utilities" }
|
2020-03-13 20:02:39 +03:00
|
|
|
|
2020-04-24 09:57:05 +03:00
|
|
|
clap = { version = "2.33.0" }
|
2020-07-14 13:39:50 +03:00
|
|
|
colored = { version = "2.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-04-25 11:47:10 +03:00
|
|
|
log = { version = "0.4" }
|
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" }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0" }
|
|
|
|
toml = { version = "0.5" }
|
2020-05-10 01:34:54 +03:00
|
|
|
thiserror = { version = "1.0" }
|
2020-06-26 10:19:40 +03:00
|
|
|
walkdir = { version = "2" }
|
|
|
|
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
|
|
|
|
|
|
|
[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
|