Cargo.toml

This commit is contained in:
howardwu 2020-08-21 04:31:34 -07:00
parent 9db8b3e364
commit 7749dbf653

View File

@ -22,11 +22,11 @@ path = "leo/main.rs"
members = [ "ast", "compiler", "gadgets", "input", "linter", "package", "typed", "state"]
[dependencies]
leo-compiler = { path = "compiler", version = "1.0.0" }
leo-gadgets = { path = "gadgets", version = "1.0.0" }
leo-input = { path = "input", version = "1.0.0" }
leo-package = { path = "package", version = "1.0.0" }
leo-state = { path = "state", version = "1.0.0" }
leo-compiler = { path = "./compiler", version = "1.0.0" }
leo-gadgets = { path = "./gadgets", version = "1.0.0" }
leo-input = { path = "./input", version = "1.0.0" }
leo-package = { path = "./package", version = "1.0.0" }
leo-state = { path = "./state", version = "1.0.0" }
snarkos-algorithms = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-algorithms", version = "1.0.0", default-features = false }
snarkos-curves = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-curves", version = "1.0.0", default-features = false }