mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-11 16:10:09 +03:00
32 lines
1.5 KiB
TOML
32 lines
1.5 KiB
TOML
[package]
|
|
name = "leo-compiler"
|
|
version = "0.1.0"
|
|
authors = ["The Aleo Team <hello@aleo.org>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
leo-ast = { path = "../ast", version = "0.1.0" }
|
|
leo-gadgets = { path = "../gadgets", version = "0.1.0" }
|
|
leo-inputs = { path = "../leo-inputs", version = "0.1.0" }
|
|
leo-types = { path = "../types", version = "0.1.0" }
|
|
|
|
snarkos-curves = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-curves", default-features = false }
|
|
snarkos-dpc = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-dpc", 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-objects = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-objects", default-features = false }
|
|
snarkos-utilities = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-utilities" }
|
|
|
|
bincode = { version = "1.0" }
|
|
hex = { version = "0.4.2" }
|
|
log = { version = "0.4" }
|
|
pest = { version = "2.0" }
|
|
rand = { version = "0.7" }
|
|
rand_xorshift = { version = "0.2", default-features = false }
|
|
sha2 = { version = "0.9" }
|
|
thiserror = { version = "1.0" }
|
|
|
|
[dev-dependencies]
|
|
num-bigint = { version = "0.3" }
|