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-08 04:22:59 +03:00
|
|
|
leo-types = { path = "../types", version = "0.1.0" }
|
2020-06-10 02:36:15 +03:00
|
|
|
leo-inputs = { path = "../leo-inputs", version = "0.1.0" }
|
2020-06-07 09:17:40 +03:00
|
|
|
|
2020-06-28 06:16:38 +03:00
|
|
|
snarkos-curves = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", rev = "c7a56d9", default-features = false }
|
2020-07-06 13:18:20 +03:00
|
|
|
snarkos-dpc = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", rev = "c7a56d9", default-features = false }
|
2020-06-28 06:16:38 +03:00
|
|
|
snarkos-errors = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", rev = "c7a56d9", default-features = false }
|
|
|
|
snarkos-gadgets = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", rev = "c7a56d9", default-features = false }
|
|
|
|
snarkos-models = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", rev = "c7a56d9", default-features = false }
|
2020-07-06 13:18:20 +03:00
|
|
|
snarkos-objects = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", rev = "c7a56d9", default-features = false }
|
2020-04-24 04:33:43 +03:00
|
|
|
|
2020-06-25 07:05:11 +03:00
|
|
|
bincode = { version = "1.0" }
|
2020-05-03 06:10:22 +03:00
|
|
|
hex = { version = "0.4.2" }
|
2020-04-27 08:37:08 +03:00
|
|
|
log = { version = "0.4" }
|
2020-06-17 05:13:11 +03:00
|
|
|
pest = { version = "2.0" }
|
2020-04-24 04:33:43 +03:00
|
|
|
rand = { version = "0.7" }
|
2020-06-29 14:09:36 +03:00
|
|
|
sha2 = { version = "0.9" }
|
2020-06-07 09:26:48 +03:00
|
|
|
thiserror = { version = "1.0" }
|
2020-06-08 09:01:57 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-06-28 06:16:38 +03:00
|
|
|
snarkos-utilities = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", rev = "c7a56d9" }
|