mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-11 01:45:48 +03:00
70 lines
1.9 KiB
TOML
70 lines
1.9 KiB
TOML
[package]
|
|
name = "leo"
|
|
version = "0.1.0"
|
|
authors = ["The Aleo Team <hello@aleo.org>"]
|
|
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" ]
|
|
|
|
[dependencies]
|
|
leo-compiler = { path = "compiler", version = "0.1.0" }
|
|
leo-gadgets = { path = "gadgets", version = "0.1.0" }
|
|
leo-input = { path = "input", version = "0.1.0" }
|
|
leo-package = { path = "package", version = "0.1.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.0" }
|
|
colored = { version = "2.0" }
|
|
env_logger = { version = "0.7" }
|
|
from-pest = { version = "0.3.1" }
|
|
log = { version = "0.4" }
|
|
rand = { version = "0.7" }
|
|
rand_core = { version = "0.5.1" }
|
|
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" }
|
|
|
|
[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
|