leo/Cargo.toml

80 lines
2.3 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"
version = "1.0.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-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]
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
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
clap = { version = "2.33.3" }
colored = { version = "2.0" }
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-04-25 11:47:10 +03:00
log = { version = "0.4" }
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-18 15:43:37 +03:00
self_update = { version = "0.19.0" }
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" }
zip = { version = "0.5" }
[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