mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 23:33:27 +03:00
21 lines
623 B
TOML
21 lines
623 B
TOML
[package]
|
|
name = "leo-typed"
|
|
version = "0.1.0"
|
|
authors = ["The Aleo Team <hello@aleo.org>"]
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "leo_typed_ast"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
leo-ast = { path = "../ast", version = "0.1.0" }
|
|
leo-inputs = { path = "../leo-inputs", 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 }
|
|
|
|
pest = { version = "2.0" }
|
|
serde = { version = "1.0" }
|
|
serde_json = { version = "1.0" }
|