mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-24 07:48:04 +03:00
b4cfa64167
* Adds ci.yml * Update ci script * Update Cargo.toml * Update to ubuntu-latest * Update dependencies * Update git deps with rev * Update ci script * Update ci script * Update ci script * Update code coverage * Update code coverage * Update CI * Update CI * Update CI * Update CI * Update CI * Update CI * Update CI * Update CI * Update CI * Update CI * Update CI * Update CI * Update CI * Update CI script * Update CI script
26 lines
1017 B
TOML
26 lines
1017 B
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-types = { path = "../types", version = "0.1.0" }
|
|
leo-inputs = { path = "../leo-inputs", version = "0.1.0" }
|
|
|
|
snarkos-curves = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", rev = "c7a56d9", default-features = false }
|
|
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 }
|
|
|
|
hex = { version = "0.4.2" }
|
|
log = { version = "0.4" }
|
|
pest = { version = "2.0" }
|
|
rand = { version = "0.7" }
|
|
sha2 = { version = "0.8" }
|
|
thiserror = { version = "1.0" }
|
|
|
|
[dev-dependencies]
|
|
snarkos-utilities = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", rev = "c7a56d9" }
|