[package] name = "leo" version = "1.0.0" authors = ["The Aleo Team "] edition = "2018" [lib] name = "leo" path = "leo/lib.rs" [[bin]] name = "leo" path = "leo/main.rs" [workspace] members = [ "ast", "compiler", "gadgets", "input", "linter", "package", "typed", "state"] [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" } 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" } clap = { version = "2.33.3" } colored = { version = "2.0" } dirs = { version = "3.0.1" } console = { version = "0.12.0" } dotenv = { version = "0.15.0" } env_logger = { version = "0.7" } from-pest = { version = "0.3.1" } lazy_static = { version = "1.4.0" } log = { version = "0.4" } notify= { version = "4.0.15" } num-bigint = { version = "0.3" } rand = { version = "0.7" } rand_core = { version = "0.5.1" } reqwest = { version = "0.10.7", features = ["blocking", "json"] } self_update = { version = "0.19.0" } 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" } [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