From 7749dbf6532b31d87cea5e26015c5fc3eacc0563 Mon Sep 17 00:00:00 2001 From: howardwu Date: Fri, 21 Aug 2020 04:31:34 -0700 Subject: [PATCH] Cargo.toml --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cdc7404a02..1461161dbb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 }