-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
204 additions
and
221 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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
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 = "casper-client" | ||
version = "0.4.0" | ||
version = "0.3.1" | ||
authors = ["Marc Brinkmann <[email protected]>", "Fraser Hutchison <[email protected]>"] | ||
edition = "2018" | ||
description = "A client for interacting with the Casper network" | ||
|
@@ -22,9 +22,9 @@ doc = false | |
|
||
[dependencies] | ||
base64 = "0.13.0" | ||
casper-execution-engine = { version = "0.4.0", path = "../execution_engine" } | ||
casper-node = { version = "0.4.0", path = "../node" } | ||
casper-types = { version = "0.4.0", path = "../types", features = ["std"] } | ||
casper-execution-engine = { version = "0.3.1", path = "../execution_engine" } | ||
casper-node = { version = "0.3.1", path = "../node" } | ||
casper-types = { version = "0.3.1", path = "../types", features = ["std"] } | ||
clap = "2.33.1" | ||
futures = "0.3.5" | ||
hex = { version = "0.4.2", 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 = "casper-execution-engine" | ||
version = "0.4.0" # when updating, also update 'html_root_url' in lib.rs | ||
version = "0.3.1" # when updating, also update 'html_root_url' in lib.rs | ||
authors = ["Henry Till <[email protected]>", "Ed Hastings <[email protected]>"] | ||
edition = "2018" | ||
description = "CasperLabs execution engine crates." | ||
|
@@ -15,7 +15,7 @@ anyhow = "1.0.33" | |
base16 = "0.2.1" | ||
bincode = "1.3.1" | ||
blake2 = "0.9.0" | ||
casper-types = { version = "0.4.0", path = "../types", features = ["std", "gens"] } | ||
casper-types = { version = "0.3.1", path = "../types", features = ["std", "gens"] } | ||
chrono = "0.4.10" | ||
datasize = "0.2.0" | ||
csv = "1.1.3" | ||
|
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
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 = "cargo-casper" | ||
version = "0.4.0" | ||
version = "0.3.1" | ||
authors = ["Fraser Hutchison <[email protected]>"] | ||
edition = "2018" | ||
description = "Command line tool for creating a Wasm smart contract and tests for use on the Casper network." | ||
|
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
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
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 = "casper-engine-grpc-server" | ||
version = "0.4.0" | ||
version = "0.3.1" | ||
authors = ["Mateusz Górski <[email protected]>"] | ||
edition = "2018" | ||
description = "Wasm execution engine for Casper smart contracts." | ||
|
@@ -19,8 +19,8 @@ include = [ | |
] | ||
|
||
[dependencies] | ||
casper-execution-engine = { version = "0.4.0", path = "../../execution_engine", features = ["gens"] } | ||
casper-types = { version = "0.4.0", path = "../../types", features = ["std", "gens"] } | ||
casper-execution-engine = { version = "0.3.1", path = "../../execution_engine", features = ["gens"] } | ||
casper-types = { version = "0.3.1", path = "../../types", features = ["std", "gens"] } | ||
clap = "2" | ||
ctrlc = "3" | ||
dirs = "3" | ||
|
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 = "casper-engine-test-support" | ||
version = "0.4.0" # when updating, also update 'html_root_url' in lib.rs | ||
version = "0.3.1" # when updating, also update 'html_root_url' in lib.rs | ||
authors = ["Fraser Hutchison <[email protected]>"] | ||
edition = "2018" | ||
description = "Library to support testing of Wasm smart contracts for use on the Casper network." | ||
|
@@ -11,10 +11,10 @@ repository = "https://github.com/CasperLabs/casper-node/tree/master/grpc/test_su | |
license-file = "../../LICENSE" | ||
|
||
[dependencies] | ||
casper-contract = { version = "0.4.0", path = "../../smart_contracts/contract", features = ["std"] } | ||
casper-engine-grpc-server = { version = "0.4.0", path = "../server" } | ||
casper-execution-engine = { version = "0.4.0", path = "../../execution_engine" } | ||
casper-types = { version = "0.4.0", path = "../../types", features = ["std"] } | ||
casper-contract = { version = "0.3.1", path = "../../smart_contracts/contract", features = ["std"] } | ||
casper-engine-grpc-server = { version = "0.3.1", path = "../server" } | ||
casper-execution-engine = { version = "0.3.1", path = "../../execution_engine" } | ||
casper-types = { version = "0.3.1", path = "../../types", features = ["std"] } | ||
grpc = "0.6.1" | ||
lmdb = "0.8.0" | ||
log = "0.4.8" | ||
|
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
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 = "casper-node" | ||
version = "0.4.0" # when updating, also update 'html_root_url' in lib.rs | ||
version = "0.3.1" # when updating, also update 'html_root_url' in lib.rs | ||
authors = ["Marc Brinkmann <[email protected]>", "Fraser Hutchison <[email protected]>"] | ||
edition = "2018" | ||
description = "The Casper blockchain node" | ||
|
@@ -19,9 +19,9 @@ base16 = "0.2.1" | |
base64 = "0.13.0" | ||
bincode = "1.3.1" | ||
blake2 = { version = "0.9.0", default-features = false } | ||
casper-execution-engine = { version = "0.4.0", path = "../execution_engine" } | ||
casper-node-macros = { version = "0.4.0", path = "../node_macros" } | ||
casper-types = { version = "0.4.0", path = "../types", features = ["std", "gens"] } | ||
casper-execution-engine = { version = "0.3.1", path = "../execution_engine" } | ||
casper-node-macros = { version = "0.3.1", path = "../node_macros" } | ||
casper-types = { version = "0.3.1", path = "../types", features = ["std", "gens"] } | ||
chrono = "0.4.10" | ||
csv = "1.1.3" | ||
datasize = { version = "0.2.3", features = ["fake_clock-types", "futures-types", "smallvec-types", "tokio-types"] } | ||
|
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
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 = "casper-node-macros" | ||
version = "0.4.0" | ||
version = "0.3.1" | ||
authors = ["Marc Brinkmann <[email protected]>"] | ||
edition = "2018" | ||
description = "A macro to create reactor implementations for the casper-node." | ||
|
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
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 = "casper-contract" | ||
version = "0.4.0" # when updating, also update 'html_root_url' in lib.rs | ||
version = "0.3.1" # when updating, also update 'html_root_url' in lib.rs | ||
authors = ["Michael Birch <[email protected]>", "Mateusz Górski <[email protected]>"] | ||
edition = "2018" | ||
description = "Library for developing Casper smart contracts." | ||
|
@@ -11,7 +11,7 @@ repository = "https://github.com/CasperLabs/casper-node/tree/master/smart_contra | |
license-file = "../../LICENSE" | ||
|
||
[dependencies] | ||
casper-types = { version = "0.4.0", path = "../../types" } | ||
casper-types = { version = "0.3.1", path = "../../types" } | ||
hex_fmt = "0.3.0" | ||
thiserror = "1.0.18" | ||
version-sync = { version = "0.9", optional = true } | ||
|
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
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
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 = "casper-types" | ||
version = "0.4.0" # when updating, also update 'html_root_url' in lib.rs | ||
version = "0.3.1" # when updating, also update 'html_root_url' in lib.rs | ||
authors = ["Fraser Hutchison <[email protected]>"] | ||
edition = "2018" | ||
description = "Types used to allow creation of Wasm contracts and tests for use on the Casper network." | ||
|
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