leo/Cargo.toml

72 lines
2.0 KiB
TOML
Raw Normal View History

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 07:52:55 +03:00
members = [ "ast", "compiler", "gadgets", "input", "linter", "package", "typed" ]
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" }
leo-gadgets = { path = "gadgets", version = "0.1.0" }
2020-08-03 07:00:23 +03:00
leo-input = { path = "input", version = "0.1.0" }
2020-08-03 07:52:55 +03:00
leo-package = { path = "package", version = "0.1.0" }
2020-04-25 11:47:10 +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" }
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-08-08 21:12:52 +03:00
lazy_static = { version = "1.4.0" }
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" }
2020-08-08 21:12:52 +03:00
reqwest = { version = "0.10.7", features = ["blocking", "json"] }
2020-04-24 09:57:05 +03:00
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
toml = { version = "0.5" }
thiserror = { version = "1.0" }
[dev-dependencies]
rusty-hook = { version = "0.11.2" }
2020-08-03 05:57:28 +03:00
[features]
default = []
ci_skip = ["leo-compiler/ci_skip"]
[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