leo/typed/Cargo.toml

32 lines
770 B
TOML
Raw Normal View History

[package]
2020-08-03 06:56:22 +03:00
name = "leo-typed"
version = "0.1.0"
authors = ["The Aleo Team <hello@aleo.org>"]
edition = "2018"
[[bin]]
2020-08-03 06:56:22 +03:00
name = "leo_typed_ast"
path = "src/main.rs"
2020-08-03 06:33:05 +03:00
[[bench]]
name = "typed_ast"
harness = false
[dependencies]
leo-ast = { path = "../ast", version = "0.1.0" }
2020-08-03 07:00:23 +03:00
leo-input = { path = "../input", version = "0.1.0" }
snarkos-errors = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-errors", default-features = false }
snarkos-models = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-models", default-features = false }
2020-06-17 05:13:11 +03:00
pest = { version = "2.0" }
serde = { version = "1.0" }
serde_json = { version = "1.0" }
2020-08-03 05:57:28 +03:00
2020-08-03 06:33:05 +03:00
[dev-dependencies]
criterion = { version = "0.3" }
2020-08-03 05:57:28 +03:00
[features]
default = []
ci_skip = ["leo-ast/ci_skip"]