Skip to content

Commit

Permalink
Update Cargo.tomls
Browse files Browse the repository at this point in the history
  • Loading branch information
howardwu committed Jun 26, 2020
1 parent 8b28901 commit 18a6316
Show file tree
Hide file tree
Showing 39 changed files with 1,267 additions and 650 deletions.
42 changes: 0 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "snarkos"
version = "0.8.0"
authors = ["The Aleo Team <[email protected]"]
authors = ["The Aleo Team <[email protected]>"]
description = "A decentralized record system"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkOS"
Expand Down Expand Up @@ -45,11 +45,9 @@ path = "snarkOS/main.rs"
snarkos-consensus = { path = "./consensus", version = "0.8.0" }
snarkos-dpc = { path = "./dpc", version = "0.8.0" }
snarkos-errors = { path = "./errors", version = "0.8.0" }
snarkos-marlin = { path = "./marlin", version = "0.1.0" }
snarkos-network = { path = "network", version = "0.8.0" }
snarkos-objects = { path = "objects", version = "0.8.0" }
snarkos-posw = { path = "./posw", version = "0.8.0" }
snarkos-polycommit = { path = "./poly-commit", version = "0.1.0" }
snarkos-rpc = { path = "./rpc", version = "0.8.0" }
snarkos-storage = { path = "storage", version = "0.8.0" }
snarkos-utilities = { path = "./utilities", version = "0.8.0" }
Expand Down
2 changes: 1 addition & 1 deletion algorithms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "snarkos-algorithms"
version = "0.8.0"
authors = ["The Aleo Team <[email protected]"]
authors = ["The Aleo Team <[email protected]>"]
description = "Algorithms for a decentralized record system"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkOS"
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "snarkos-benchmarks"
version = "0.8.0"
authors = ["The Aleo Team <[email protected]"]
authors = ["The Aleo Team <[email protected]>"]
description = "Benchmarks for a decentralized record system"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkOS"
Expand Down
2 changes: 1 addition & 1 deletion console/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "snarkos-console"
version = "0.8.0"
authors = ["The Aleo Team <[email protected]"]
authors = ["The Aleo Team <[email protected]>"]
description = "Console for a decentralized record system"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkOS"
Expand Down
2 changes: 1 addition & 1 deletion curves/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "snarkos-curves"
version = "0.8.0"
authors = ["The Aleo Team <[email protected]"]
authors = ["The Aleo Team <[email protected]>"]
description = "Curves for a decentralized record system"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkOS"
Expand Down
2 changes: 1 addition & 1 deletion dpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "snarkos-dpc"
version = "0.8.0"
authors = ["The Aleo Team <[email protected]"]
authors = ["The Aleo Team <[email protected]>"]
description = "Errors for a decentralized record system"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkOS"
Expand Down
2 changes: 1 addition & 1 deletion errors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "snarkos-errors"
version = "0.8.0"
authors = ["The Aleo Team <[email protected]"]
authors = ["The Aleo Team <[email protected]>"]
description = "Errors for a decentralized record system"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkOS"
Expand Down
2 changes: 1 addition & 1 deletion gadgets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "snarkos-gadgets"
version = "0.8.0"
authors = ["The Aleo Team <[email protected]"]
authors = ["The Aleo Team <[email protected]>"]
description = "Gadgets for a decentralized record system"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkOS"
Expand Down
6 changes: 0 additions & 6 deletions marlin/AUTHORS

This file was deleted.

11 changes: 4 additions & 7 deletions marlin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,38 +8,35 @@ authors = [
"Pratyush Mishra <[email protected]>",
"Noah Vesely <[email protected]>",
"Nicholas Ward <[email protected]>",
"The Aleo Team <[email protected]>",
]
description = "A library for the Marlin preprocessing zkSNARK"
repository = "https://github.com/scipr/marlin"
documentation = "https://docs.rs/marlin/"
keywords = ["cryptography", "polynomial commitments", "zkSNARK"]
categories = ["cryptography"]
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
license = "MIT/Apache-2.0"
license = "GPL-3.0"
edition = "2018"

[dependencies]
snarkos-algorithms = { path = "../algorithms" }
snarkos-errors = { path = "../errors" }
snarkos-gadgets = { path = "../gadgets" }
snarkos-models = { path = "../models" }
snarkos-polycommit = { path = "../polycommit", default-features = false }
snarkos-profiler = { path = "../profiler" }
snarkos-utilities = { path = "../utilities" }

snarkos-polycommit = { path = "../poly-commit", default-features = false }

blake2 = { version = "0.8", default-features = false }
derivative = { version = "2", features = ["use_core"] }
digest = { version = "0.8" }
rand_core = { version = "0.5" }
rand_chacha = { version = "0.2.1", default-features = false }
rand_core = { version = "0.5" }
rayon = { version = "1", optional = true }

[dev-dependencies]
snarkos-curves = { path = "../curves" }

rusty-hook = { version = "0.11.1" }

[features]
default = [ "std", "parallel" ]
std = [ "snarkos-polycommit/std" ]
Expand Down
Loading

0 comments on commit 18a6316

Please sign in to comment.