From c07958e29211a47a05ac17c4a8cc441ccba35ca0 Mon Sep 17 00:00:00 2001 From: howardwu Date: Fri, 21 Aug 2020 05:09:48 -0700 Subject: [PATCH] Clean up Cargo.toml --- Cargo.lock | 267 +++++++++++++++++++++++++++++++++----------- Cargo.toml | 12 +- compiler/Cargo.toml | 14 +-- gadgets/Cargo.toml | 8 +- input/Cargo.toml | 10 +- state/Cargo.toml | 16 +-- typed/Cargo.toml | 4 +- 7 files changed, 233 insertions(+), 98 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 86b553428f..01ad65165b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1238,13 +1238,13 @@ dependencies = [ "rand_xorshift", "serde", "sha2", - "snarkos-curves", + "snarkos-curves 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "snarkos-dpc", - "snarkos-errors", + "snarkos-errors 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "snarkos-gadgets", - "snarkos-models", - "snarkos-objects", - "snarkos-utilities", + "snarkos-models 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-objects 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-utilities 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "thiserror", ] @@ -1254,9 +1254,9 @@ version = "1.0.0" dependencies = [ "rand", "rand_xorshift", - "snarkos-errors", - "snarkos-models", - "snarkos-utilities", + "snarkos-errors 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-models 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-utilities 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "thiserror", ] @@ -1268,11 +1268,11 @@ dependencies = [ "pest", "pest-ast", "pest_derive", - "snarkos-algorithms", - "snarkos-curves", - "snarkos-errors", + "snarkos-algorithms 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-curves 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-errors 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "snarkos-gadgets", - "snarkos-models", + "snarkos-models 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "thiserror", ] @@ -1303,12 +1303,12 @@ dependencies = [ "self_update", "serde", "serde_json", - "snarkos-algorithms", - "snarkos-curves", - "snarkos-errors", + "snarkos-algorithms 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-curves 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-errors 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "snarkos-gadgets", - "snarkos-models", - "snarkos-utilities", + "snarkos-models 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-utilities 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "thiserror", "toml", "zip", @@ -1339,14 +1339,14 @@ dependencies = [ "leo-typed", "rand", "rand_xorshift", - "snarkos-algorithms", - "snarkos-curves", + "snarkos-algorithms 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-curves 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "snarkos-dpc", - "snarkos-errors", - "snarkos-models", - "snarkos-objects", + "snarkos-errors 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-models 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-objects 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "snarkos-storage", - "snarkos-utilities", + "snarkos-utilities 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "thiserror", ] @@ -1360,8 +1360,8 @@ dependencies = [ "pest", "serde", "serde_json", - "snarkos-errors", - "snarkos-models", + "snarkos-errors 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-models 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2339,10 +2339,31 @@ dependencies = [ "rayon", "sha2", "smallvec", - "snarkos-errors", - "snarkos-models", - "snarkos-profiler", - "snarkos-utilities", + "snarkos-errors 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-models 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-profiler 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-utilities 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", +] + +[[package]] +name = "snarkos-algorithms" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06bef65a6effe9a84009cd96b4bdd53166a736c02a69c738a7a1853283b3902a" +dependencies = [ + "blake2", + "derivative", + "digest 0.8.1", + "itertools 0.9.0", + "rand", + "rand_chacha", + "rayon", + "sha2", + "smallvec", + "snarkos-errors 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-models 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-profiler 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-utilities 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2355,9 +2376,25 @@ dependencies = [ "rand_xorshift", "rustc_version", "serde", - "snarkos-errors", - "snarkos-models", - "snarkos-utilities", + "snarkos-errors 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-models 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-utilities 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", +] + +[[package]] +name = "snarkos-curves" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "581dac15bd0c4ccf63951948e5c6a31a1f7401bc4921f98aa129cf9667baac8a" +dependencies = [ + "derivative", + "rand", + "rand_xorshift", + "rustc_version", + "serde", + "snarkos-errors 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-models 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-utilities 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2370,25 +2407,37 @@ dependencies = [ "syn 1.0.38", ] +[[package]] +name = "snarkos-derives" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ce6db5a48fa1af675a3b4e19a60e0ea941172fda296990690226baa966808ac" +dependencies = [ + "proc-macro2 1.0.19", + "quote 1.0.7", + "syn 1.0.38", +] + [[package]] name = "snarkos-dpc" version = "1.0.0" -source = "git+ssh://git@github.com/AleoHQ/snarkOS.git#9fda1b628c627bf717556e81dc10bee667f77a52" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b2740d419fa4747e6e358052303caf06e3aab7ad758ef5301e5a70320e7460d" dependencies = [ "blake2", "derivative", "hex", "itertools 0.9.0", "rand", - "snarkos-algorithms", - "snarkos-curves", - "snarkos-errors", + "snarkos-algorithms 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-curves 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-errors 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "snarkos-gadgets", - "snarkos-models", - "snarkos-objects", - "snarkos-parameters", - "snarkos-profiler", - "snarkos-utilities", + "snarkos-models 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-objects 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-parameters 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-profiler 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-utilities 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2407,19 +2456,35 @@ dependencies = [ "toml", ] +[[package]] +name = "snarkos-errors" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45fbdc0916755cdf9522f6abc20103681f0d23308067b1a53be91fe216392d37" +dependencies = [ + "base58", + "bech32", + "bincode", + "hex", + "jsonrpc-core", + "thiserror", + "toml", +] + [[package]] name = "snarkos-gadgets" version = "1.0.0" -source = "git+ssh://git@github.com/AleoHQ/snarkOS.git#9fda1b628c627bf717556e81dc10bee667f77a52" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fdc93bdddb0917013f4c7586b1207e90c714ddfdcf1265a69e0a82d5c7bc608" dependencies = [ "derivative", "digest 0.8.1", "itertools 0.9.0", - "snarkos-algorithms", - "snarkos-curves", - "snarkos-errors", - "snarkos-models", - "snarkos-utilities", + "snarkos-algorithms 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-curves 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-errors 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-models 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-utilities 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2434,8 +2499,25 @@ dependencies = [ "rand_xorshift", "serde", "smallvec", - "snarkos-errors", - "snarkos-utilities", + "snarkos-errors 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-utilities 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", +] + +[[package]] +name = "snarkos-models" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e147408d94ad28fdf0de74c1225b2ec67860b9bddb2567013d93ccb299b333e" +dependencies = [ + "bincode", + "derivative", + "itertools 0.9.0", + "rand", + "rand_xorshift", + "serde", + "smallvec", + "snarkos-errors 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-utilities 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2452,11 +2534,33 @@ dependencies = [ "rand", "serde", "sha2", - "snarkos-algorithms", - "snarkos-curves", - "snarkos-errors", - "snarkos-models", - "snarkos-utilities", + "snarkos-algorithms 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-curves 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-errors 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-models 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-utilities 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", +] + +[[package]] +name = "snarkos-objects" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62930e0e8ce3004c871ae640844e322d68cf9ad0ad73bf80f9082e1c0cd1ee71" +dependencies = [ + "base58", + "bech32", + "chrono", + "derivative", + "hex", + "once_cell", + "rand", + "serde", + "sha2", + "snarkos-algorithms 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-curves 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-errors 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-models 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-utilities 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2466,10 +2570,23 @@ source = "git+ssh://git@github.com/AleoHQ/snarkOS.git#9fda1b628c627bf717556e81dc dependencies = [ "curl", "hex", - "snarkos-algorithms", - "snarkos-errors", - "snarkos-models", - "snarkos-utilities", + "snarkos-algorithms 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-errors 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-models 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-utilities 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", +] + +[[package]] +name = "snarkos-parameters" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec4f9d1db48ac8b784d2499af9619c0ee5b3c619ca9467dbf102804aba721873" +dependencies = [ + "hex", + "snarkos-algorithms 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-errors 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-models 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-utilities 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2477,6 +2594,12 @@ name = "snarkos-profiler" version = "1.0.0" source = "git+ssh://git@github.com/AleoHQ/snarkOS.git#9fda1b628c627bf717556e81dc10bee667f77a52" +[[package]] +name = "snarkos-profiler" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cf0f5fd8121285811d5b5f7c61e85e176c2ca55d8009e24e151308a7eaa0db6" + [[package]] name = "snarkos-storage" version = "1.0.0" @@ -2488,12 +2611,12 @@ dependencies = [ "rand", "rocksdb", "serde", - "snarkos-algorithms", - "snarkos-errors", - "snarkos-models", - "snarkos-objects", - "snarkos-parameters", - "snarkos-utilities", + "snarkos-algorithms 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-errors 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-models 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-objects 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-parameters 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-utilities 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", ] [[package]] @@ -2503,8 +2626,20 @@ source = "git+ssh://git@github.com/AleoHQ/snarkOS.git#9fda1b628c627bf717556e81dc dependencies = [ "bincode", "rand", - "snarkos-derives", - "snarkos-errors", + "snarkos-derives 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", + "snarkos-errors 1.0.0 (git+ssh://git@github.com/AleoHQ/snarkOS.git)", +] + +[[package]] +name = "snarkos-utilities" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21ad2b96414c45c2f90e9344b1420c9db2fbbb9435d6f1da3e2f819da1b08c05" +dependencies = [ + "bincode", + "rand", + "snarkos-derives 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snarkos-errors 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 5e5d054f23..7884f4c471 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,12 +28,12 @@ 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 } -snarkos-errors = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-errors", version = "1.0.0", default-features = false } -snarkos-gadgets = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-gadgets", version = "1.0.0", default-features = false } -snarkos-models = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-models", version = "1.0.0", default-features = false } -snarkos-utilities = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-utilities", version = "1.0.0" } +snarkos-algorithms = { version = "1.0.0", default-features = false } +snarkos-curves = { version = "1.0.0", default-features = false } +snarkos-errors = { version = "1.0.0", default-features = false } +snarkos-gadgets = { version = "1.0.0", default-features = false } +snarkos-models = { version = "1.0.0", default-features = false } +snarkos-utilities = { version = "1.0.0" } clap = { version = "2.33.3" } colored = { version = "2.0" } diff --git a/compiler/Cargo.toml b/compiler/Cargo.toml index 9fd6d3fcba..23ca95ff67 100644 --- a/compiler/Cargo.toml +++ b/compiler/Cargo.toml @@ -19,13 +19,13 @@ leo-package = { path = "../package", version = "1.0.0"} leo-typed = { path = "../typed", version = "1.0.0" } leo-state = { path = "../state", version = "1.0.0" } -snarkos-curves = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-curves", version = "1.0.0", default-features = false } -snarkos-dpc = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-dpc", version = "1.0.0", default-features = false } -snarkos-errors = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-errors", version = "1.0.0", default-features = false } -snarkos-gadgets = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-gadgets", version = "1.0.0", default-features = false } -snarkos-models = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-models", version = "1.0.0", default-features = false } -snarkos-objects = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-objects", version = "1.0.0", default-features = false } -snarkos-utilities = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-utilities", version = "1.0.0" } +snarkos-curves = { version = "1.0.0", default-features = false } +snarkos-dpc = { version = "1.0.0", default-features = false } +snarkos-errors = { version = "1.0.0", default-features = false } +snarkos-gadgets = { version = "1.0.0", default-features = false } +snarkos-models = { version = "1.0.0", default-features = false } +snarkos-objects = { version = "1.0.0", default-features = false } +snarkos-utilities = { version = "1.0.0" } bincode = { version = "1.0" } hex = { version = "0.4.2" } diff --git a/gadgets/Cargo.toml b/gadgets/Cargo.toml index a7e9a5ef76..2afb11d561 100644 --- a/gadgets/Cargo.toml +++ b/gadgets/Cargo.toml @@ -12,13 +12,13 @@ license = "GPL-3.0" edition = "2018" [dependencies] -snarkos-errors = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-errors", version = "1.0.0", default-features = false } -snarkos-models = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-models", version = "1.0.0", default-features = false } -snarkos-utilities = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-utilities", version = "1.0.0" } +snarkos-errors = { version = "1.0.0", default-features = false } +snarkos-models = { version = "1.0.0", default-features = false } +snarkos-utilities = { version = "1.0.0" } rand = { version = "0.7", default-features = false } rand_xorshift = { version = "0.2", default-features = false } thiserror = { version = "1.0" } [dev-dependencies] -snarkos-utilities = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-utilities", version = "1.0.0" } \ No newline at end of file +snarkos-utilities = { version = "1.0.0" } \ No newline at end of file diff --git a/input/Cargo.toml b/input/Cargo.toml index 4723179715..6b73a68fb1 100644 --- a/input/Cargo.toml +++ b/input/Cargo.toml @@ -12,11 +12,11 @@ license = "GPL-3.0" edition = "2018" [dependencies] -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 } -snarkos-errors = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-errors", version = "1.0.0", default-features = false } -snarkos-gadgets = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-gadgets", version = "1.0.0", default-features = false } -snarkos-models = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-models", version = "1.0.0", default-features = false } +snarkos-algorithms = { version = "1.0.0", default-features = false } +snarkos-curves = { version = "1.0.0", default-features = false } +snarkos-errors = { version = "1.0.0", default-features = false } +snarkos-gadgets = { version = "1.0.0", default-features = false } +snarkos-models = { version = "1.0.0", default-features = false } from-pest = { version = "0.3.1" } pest = { version = "2.0" } diff --git a/state/Cargo.toml b/state/Cargo.toml index d1cac42c41..b038fd11f3 100644 --- a/state/Cargo.toml +++ b/state/Cargo.toml @@ -15,17 +15,17 @@ edition = "2018" leo-input = { path = "../input", version = "1.0.0" } leo-typed = { path = "../typed", 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 } -snarkos-dpc = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-dpc", version = "1.0.0", default-features = false } -snarkos-errors = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-errors", version = "1.0.0", default-features = false } -snarkos-models = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-models", version = "1.0.0", default-features = false } -snarkos-objects = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-objects", version = "1.0.0", default-features = false } -snarkos-utilities = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-utilities", version = "1.0.0" } +snarkos-algorithms = { version = "1.0.0", default-features = false } +snarkos-curves = { version = "1.0.0", default-features = false } +snarkos-dpc = { version = "1.0.0", default-features = false } +snarkos-errors = { version = "1.0.0", default-features = false } +snarkos-models = { version = "1.0.0", default-features = false } +snarkos-objects = { version = "1.0.0", default-features = false } +snarkos-utilities = { version = "1.0.0" } rand = { version = "0.7" } rand_xorshift = { version = "0.2" } thiserror = { version = "1.0" } [dev-dependencies] -snarkos-storage = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-storage" } +snarkos-storage = { version = "1.0.0" } diff --git a/typed/Cargo.toml b/typed/Cargo.toml index 9e305e1231..9127b0e6bb 100644 --- a/typed/Cargo.toml +++ b/typed/Cargo.toml @@ -24,8 +24,8 @@ harness = false leo-ast = { path = "../ast", version = "1.0.0" } leo-input = { path = "../input", version = "1.0.0" } -snarkos-errors = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-errors", version = "1.0.0", default-features = false } -snarkos-models = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-models", version = "1.0.0", default-features = false } +snarkos-errors = { version = "1.0.0", default-features = false } +snarkos-models = { version = "1.0.0", default-features = false } pest = { version = "2.0" } serde = { version = "1.0" }