leo/compiler/Cargo.toml

24 lines
916 B
TOML
Raw Normal View History

2020-04-24 04:33:43 +03:00
[package]
2020-04-27 08:34:15 +03:00
name = "leo-compiler"
2020-04-24 04:33:43 +03:00
version = "0.1.0"
authors = ["The Aleo Team <hello@aleo.org>"]
edition = "2018"
[dependencies]
2020-06-07 09:17:40 +03:00
leo-ast = { path = "../ast", version = "0.1.0" }
2020-06-05 08:53:52 +03:00
snarkos-algorithms = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", version = "0.8.0" }
snarkos-curves = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", version = "0.8.0" }
snarkos-errors = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", version = "0.8.0" }
snarkos-gadgets = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", version = "0.8.0" }
snarkos-models = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", version = "0.8.0" }
snarkos-utilities = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", version = "0.8.0" }
2020-04-24 04:33:43 +03:00
from-pest = { version = "0.3.1" }
hex = { version = "0.4.2" }
log = { version = "0.4" }
2020-04-24 04:33:43 +03:00
pest = { version = "2.0" }
rand = { version = "0.7" }
sha2 = { version = "0.8" }
thiserror = { version = "1.0" }