forked from ProvableHQ/snarkOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Released {{version}}, starting {{next_version}}
- Loading branch information
howardwu
committed
Aug 27, 2020
1 parent
fd433a2
commit ce0f34b
Showing
23 changed files
with
171 additions
and
171 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "snarkos" | ||
version = "1.1.3" | ||
version = "1.1.4-alpha.0" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "A decentralized operating system" | ||
homepage = "https://aleo.org" | ||
|
@@ -41,16 +41,16 @@ name = "snarkos" | |
path = "snarkos/main.rs" | ||
|
||
[dependencies] | ||
snarkos-consensus = { path = "./consensus", version = "1.0.0" } | ||
snarkos-dpc = { path = "./dpc", version = "1.0.0" } | ||
snarkos-errors = { path = "./errors", version = "1.0.0" } | ||
snarkos-models = { path = "./models", version = "1.0.0" } | ||
snarkos-network = { path = "./network", version = "1.0.0" } | ||
snarkos-objects = { path = "./objects", version = "1.0.0" } | ||
snarkos-posw = { path = "./posw", version = "1.0.0" } | ||
snarkos-rpc = { path = "./rpc", version = "1.0.0" } | ||
snarkos-storage = { path = "./storage", version = "1.0.0" } | ||
snarkos-utilities = { path = "./utilities", version = "1.0.0" } | ||
snarkos-consensus = { path = "./consensus", version = "^1.1.4-alpha.0"} | ||
snarkos-dpc = { path = "./dpc", version = "^1.1.4-alpha.0"} | ||
snarkos-errors = { path = "./errors", version = "^1.1.4-alpha.0"} | ||
snarkos-models = { path = "./models", version = "^1.1.4-alpha.0"} | ||
snarkos-network = { path = "./network", version = "^1.1.4-alpha.0"} | ||
snarkos-objects = { path = "./objects", version = "^1.1.4-alpha.0"} | ||
snarkos-posw = { path = "./posw", version = "^1.1.4-alpha.0"} | ||
snarkos-rpc = { path = "./rpc", version = "^1.1.4-alpha.0"} | ||
snarkos-storage = { path = "./storage", version = "^1.1.4-alpha.0"} | ||
snarkos-utilities = { path = "./utilities", version = "^1.1.4-alpha.0"} | ||
|
||
clap = { version = "2.33.3" } | ||
colored = { version = "2.0" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "snarkos-algorithms" | ||
version = "1.1.3" | ||
version = "1.1.4-alpha.0" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "Algorithms for a decentralized operating system" | ||
homepage = "https://aleo.org" | ||
|
@@ -17,10 +17,10 @@ path = "examples/snark/gm17.rs" | |
required-features = ["rand", "snarkos-curves/bls12_377", "snarkos-models/gadgets"] | ||
|
||
[dependencies] | ||
snarkos-errors = { path = "../errors", version = "1.0.0", default-features = false } | ||
snarkos-models = { path = "../models", version = "1.0.0", default-features = false } | ||
snarkos-profiler = { path = "../profiler", version = "1.0.0" } | ||
snarkos-utilities = { path = "../utilities", version = "1.0.0", default-features = false } | ||
snarkos-errors = { path = "../errors", version = "^1.1.4-alpha.0", default-features = false } | ||
snarkos-models = { path = "../models", version = "^1.1.4-alpha.0", default-features = false } | ||
snarkos-profiler = { path = "../profiler", version = "^1.1.4-alpha.0"} | ||
snarkos-utilities = { path = "../utilities", version = "^1.1.4-alpha.0", default-features = false } | ||
|
||
blake2 = { version = "0.8.1" } | ||
derivative = { version = "2" } | ||
|
@@ -33,7 +33,7 @@ sha2 = { version = "0.9" } | |
smallvec = { version = "1.4" } | ||
|
||
[dev-dependencies] | ||
snarkos-curves = { path = "../curves", version = "1.0.0" } | ||
snarkos-curves = { path = "../curves", version = "^1.1.4-alpha.0"} | ||
|
||
criterion = { version = "0.3.3" } | ||
csv = { version = "1" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "snarkos-benchmarks" | ||
version = "1.1.3" | ||
version = "1.1.4-alpha.0" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "Benchmarks for a decentralized operating system" | ||
homepage = "https://aleo.org" | ||
|
@@ -22,14 +22,14 @@ path = "posw/posw.rs" | |
harness = false | ||
|
||
[dependencies] | ||
snarkos-algorithms = { path = "../algorithms", version = "1.0.0" } | ||
snarkos-curves = { path = "../curves", version = "1.0.0" } | ||
snarkos-errors = { path = "../errors", version = "1.0.0" } | ||
snarkos-marlin = { path = "../marlin", version = "1.0.0" } | ||
snarkos-models = { path = "../models", version = "1.0.0" } | ||
snarkos-profiler = { path = "../profiler", version = "1.0.0" } | ||
snarkos-posw = { path = "../posw", version = "1.0.0", features = ["test-helpers"] } | ||
snarkos-utilities = { path = "../utilities", version = "1.0.0" } | ||
snarkos-algorithms = { path = "../algorithms", version = "^1.1.4-alpha.0"} | ||
snarkos-curves = { path = "../curves", version = "^1.1.4-alpha.0"} | ||
snarkos-errors = { path = "../errors", version = "^1.1.4-alpha.0"} | ||
snarkos-marlin = { path = "../marlin", version = "^1.1.4-alpha.0"} | ||
snarkos-models = { path = "../models", version = "^1.1.4-alpha.0"} | ||
snarkos-profiler = { path = "../profiler", version = "^1.1.4-alpha.0"} | ||
snarkos-posw = { path = "../posw", version = "^1.1.4-alpha.0", features = ["test-helpers"] } | ||
snarkos-utilities = { path = "../utilities", version = "^1.1.4-alpha.0"} | ||
|
||
derivative = { version = "2" } | ||
digest = { version = "0.7" } | ||
|
@@ -40,7 +40,7 @@ smallvec = { version = "1.4" } | |
criterion = "0.3.3" | ||
|
||
[dev-dependencies] | ||
snarkos-curves = { path = "../curves", version = "1.0.0" } | ||
snarkos-curves = { path = "../curves", version = "^1.1.4-alpha.0"} | ||
|
||
criterion = "0.3.3" | ||
csv = { version = "1" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "snarkos-consensus" | ||
version = "1.1.3" | ||
version = "1.1.4-alpha.0" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "Consensus for a decentralized operating system" | ||
homepage = "https://aleo.org" | ||
|
@@ -12,16 +12,16 @@ license = "GPL-3.0" | |
edition = "2018" | ||
|
||
[dependencies] | ||
snarkos-algorithms = { path = "../algorithms", version = "1.0.0" } | ||
snarkos-curves = { path = "../curves", version = "1.0.0" } | ||
snarkos-dpc = { path = "../dpc", version = "1.0.0" } | ||
snarkos-errors = { path = "../errors", version = "1.0.0" } | ||
snarkos-models = { path = "../models", version = "1.0.0" } | ||
snarkos-objects = { path= "../objects", version = "1.0.0" } | ||
snarkos-posw = { path = "../posw", version = "1.0.0" } | ||
snarkos-profiler = { path = "../profiler", version = "1.0.0" } | ||
snarkos-storage = { path = "../storage", version = "1.0.0" } | ||
snarkos-utilities = { path = "../utilities", version = "1.0.0" } | ||
snarkos-algorithms = { path = "../algorithms", version = "^1.1.4-alpha.0"} | ||
snarkos-curves = { path = "../curves", version = "^1.1.4-alpha.0"} | ||
snarkos-dpc = { path = "../dpc", version = "^1.1.4-alpha.0"} | ||
snarkos-errors = { path = "../errors", version = "^1.1.4-alpha.0"} | ||
snarkos-models = { path = "../models", version = "^1.1.4-alpha.0"} | ||
snarkos-objects = { path= "../objects", version = "^1.1.4-alpha.0"} | ||
snarkos-posw = { path = "../posw", version = "^1.1.4-alpha.0"} | ||
snarkos-profiler = { path = "../profiler", version = "^1.1.4-alpha.0"} | ||
snarkos-storage = { path = "../storage", version = "^1.1.4-alpha.0"} | ||
snarkos-utilities = { path = "../utilities", version = "^1.1.4-alpha.0"} | ||
|
||
bincode = { version="1.3.1" } | ||
chrono = { version = "0.4", features = ["serde"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "snarkos-curves" | ||
version = "1.1.3" | ||
version = "1.1.4-alpha.0" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "Curves for a decentralized operating system" | ||
homepage = "https://aleo.org" | ||
|
@@ -12,9 +12,9 @@ license = "GPL-3.0" | |
edition = "2018" | ||
|
||
[dependencies] | ||
snarkos-errors = { path = "../errors", version = "1.0.0", default-features = false } | ||
snarkos-models = { path = "../models", version = "1.0.0", default-features = false } | ||
snarkos-utilities = { path = "../utilities", version = "1.0.0" } # TODO: Add default-features=false back in. | ||
snarkos-errors = { path = "../errors", version = "^1.1.4-alpha.0", default-features = false } | ||
snarkos-models = { path = "../models", version = "^1.1.4-alpha.0", default-features = false } | ||
snarkos-utilities = { path = "../utilities", version = "^1.1.4-alpha.0"} # TODO: Add default-features=false back in. | ||
|
||
derivative = { version = "2" } | ||
rand = { version = "0.7" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "snarkos-dpc" | ||
version = "1.1.3" | ||
version = "1.1.4-alpha.0" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "Errors for a decentralized operating system" | ||
homepage = "https://aleo.org" | ||
|
@@ -12,15 +12,15 @@ license = "GPL-3.0" | |
edition = "2018" | ||
|
||
[dependencies] | ||
snarkos-algorithms = { path = "../algorithms", version = "1.0.0", default-features = false } | ||
snarkos-curves = { path = "../curves", version = "1.0.0", default-features = false } | ||
snarkos-errors = { path = "../errors", version = "1.0.0", default-features = false } | ||
snarkos-gadgets = { path = "../gadgets", version = "1.0.0", default-features = false } | ||
snarkos-models = { path = "../models", version = "1.0.0", default-features = false } | ||
snarkos-objects = { path = "../objects", version = "1.0.0", default-features = false } | ||
snarkos-parameters = { path = "../parameters", version = "1.0.0", default-features = false } | ||
snarkos-profiler = { path = "../profiler", version = "1.0.0" } | ||
snarkos-utilities = { path = "../utilities", version = "1.0.0", default-features = false } | ||
snarkos-algorithms = { path = "../algorithms", version = "^1.1.4-alpha.0", default-features = false } | ||
snarkos-curves = { path = "../curves", version = "^1.1.4-alpha.0", default-features = false } | ||
snarkos-errors = { path = "../errors", version = "^1.1.4-alpha.0", default-features = false } | ||
snarkos-gadgets = { path = "../gadgets", version = "^1.1.4-alpha.0", default-features = false } | ||
snarkos-models = { path = "../models", version = "^1.1.4-alpha.0", default-features = false } | ||
snarkos-objects = { path = "../objects", version = "^1.1.4-alpha.0", default-features = false } | ||
snarkos-parameters = { path = "../parameters", version = "^1.1.4-alpha.0", default-features = false } | ||
snarkos-profiler = { path = "../profiler", version = "^1.1.4-alpha.0"} | ||
snarkos-utilities = { path = "../utilities", version = "^1.1.4-alpha.0", default-features = false } | ||
|
||
blake2 = { version = "0.8.1" } | ||
derivative = { version = "2" } | ||
|
Oops, something went wrong.