-
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.
2264: Bump to 1.4.1 r=sacherjj a=sacherjj Co-authored-by: Joe Sacher <[email protected]>
- Loading branch information
Showing
24 changed files
with
103 additions
and
103 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 = "casper-client" | ||
version = "1.4.0" | ||
version = "1.4.1" | ||
authors = ["Marc Brinkmann <[email protected]>", "Fraser Hutchison <[email protected]>"] | ||
edition = "2018" | ||
description = "A client for interacting with the Casper network" | ||
|
@@ -23,10 +23,10 @@ doc = false | |
[dependencies] | ||
async-trait = "0.1.50" | ||
base64 = "0.13.0" | ||
casper-execution-engine = { version = "1.4.0", path = "../execution_engine" } | ||
casper-node = { version = "1.4.0", path = "../node" } | ||
casper-hashing = { version = "1.4.0", path = "../hashing" } | ||
casper-types = { version = "1.4.0", path = "../types" } | ||
casper-execution-engine = { version = "1.4.1", path = "../execution_engine" } | ||
casper-node = { version = "1.4.1", path = "../node" } | ||
casper-hashing = { version = "1.4.1", path = "../hashing" } | ||
casper-types = { version = "1.4.1", path = "../types" } | ||
clap = "2" | ||
hex = { version = "0.4.2", features = ["serde"] } | ||
humantime = "2" | ||
|
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 = "1.4.0" # when updating, also update 'html_root_url' in lib.rs | ||
version = "1.4.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." | ||
|
@@ -14,8 +14,8 @@ license-file = "../LICENSE" | |
anyhow = "1.0.33" | ||
base16 = "0.2.1" | ||
bincode = "1.3.1" | ||
casper-hashing = { version = "1.4.0", path = "../hashing" } | ||
casper-types = { version = "1.4.0", path = "../types", default-features = false, features = ["datasize", "gens", "json-schema"] } | ||
casper-hashing = { version = "1.4.1", path = "../hashing" } | ||
casper-types = { version = "1.4.1", path = "../types", default-features = false, features = ["datasize", "gens", "json-schema"] } | ||
chrono = "0.4.10" | ||
datasize = "0.2.4" | ||
hex = { version = "0.4.2", default-features = false, 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
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 = "1.4.0" | ||
version = "1.4.1" | ||
authors = ["Fraser Hutchison <[email protected]>"] | ||
edition = "2018" | ||
description = "A 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "casper-engine-test-support" | ||
version = "1.4.0" # when updating, also update 'html_root_url' in lib.rs | ||
version = "1.4.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/execution_en | |
license-file = "../../LICENSE" | ||
|
||
[dependencies] | ||
casper-contract = { version = "1.4.0", path = "../../smart_contracts/contract", default-features = false } | ||
casper-execution-engine = { version = "1.4.0", path = "../../execution_engine", features = ["gens"] } | ||
casper-types = { version = "1.4.0", path = "../../types" } | ||
casper-hashing = { version = "1.4.0", path = "../../hashing" } | ||
casper-contract = { version = "1.4.1", path = "../../smart_contracts/contract", default-features = false } | ||
casper-execution-engine = { version = "1.4.1", path = "../../execution_engine", features = ["gens"] } | ||
casper-types = { version = "1.4.1", path = "../../types" } | ||
casper-hashing = { version = "1.4.1", path = "../../hashing" } | ||
lmdb = "0.8.0" | ||
log = "0.4.8" | ||
num-rational = "0.4.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
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-node" | ||
version = "1.4.0" # when updating, also update 'html_root_url' in lib.rs | ||
version = "1.4.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" | ||
|
@@ -20,10 +20,10 @@ base16 = "0.2.1" | |
base64 = "0.13.0" | ||
bincode = "1" | ||
bytes = "1.0.1" | ||
casper-execution-engine = { version = "1.4.0", path = "../execution_engine" } | ||
casper-node-macros = { version = "1.4.0", path = "../node_macros" } | ||
casper-hashing = { version = "1.4.0", path = "../hashing" } | ||
casper-types = { version = "1.4.0", path = "../types", features = ["datasize", "gens", "json-schema"] } | ||
casper-execution-engine = { version = "1.4.1", path = "../execution_engine" } | ||
casper-node-macros = { version = "1.4.1", path = "../node_macros" } | ||
casper-hashing = { version = "1.4.1", path = "../hashing" } | ||
casper-types = { version = "1.4.1", path = "../types", features = ["datasize", "gens", "json-schema"] } | ||
chrono = "0.4.10" | ||
datasize = { version = "0.2.9", features = ["detailed", "fake_clock-types", "futures-types", "smallvec-types"] } | ||
derive_more = "0.99.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
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 = "1.4.0" | ||
version = "1.4.1" | ||
authors = ["Marc Brinkmann <[email protected]>"] | ||
edition = "2018" | ||
description = "A macro to create reactor implementations for the casper-node." | ||
|
Oops, something went wrong.