Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion binary_port/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ exclude = ["proptest-regressions"]
[dependencies]
bincode = "1.3.3"
bytes = "1.0.1"
casper-types = { version = "6.1.0", path = "../types", features = ["datasize", "json-schema", "std"] }
casper-types = { version = "7.0.0", path = "../types", features = ["datasize", "json-schema", "std"] }
num-derive = { workspace = true }
num-traits = { workspace = true }
once_cell = { version = "1.5.2" }
Expand Down
6 changes: 3 additions & 3 deletions execution_engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "casper-execution-engine"
version = "8.1.1" # when updating, also update 'html_root_url' in lib.rs
version = "9.0.0" # when updating, also update 'html_root_url' in lib.rs
authors = ["Henry Till <henrytill@gmail.com>", "Ed Hastings <ed@casperlabs.io>", "Michał Papierski <michal@casper.network>"]
edition = "2021"
description = "Casper execution engine crates."
Expand All @@ -17,8 +17,8 @@ bincode = "1.3.1"
blake2 = { version = "0.10.6", default-features = false }
blake3 = { version = "1.5.0", default-features = false, features = ["pure"] }
sha2 = { version = "0.10.8", default-features = false }
casper-storage = { version = "4.0.1", path = "../storage", default-features = true }
casper-types = { version = "6.1.0", path = "../types", default-features = false, features = ["datasize", "gens", "json-schema", "std"] }
casper-storage = { version = "5.0.0", path = "../storage", default-features = true }
casper-types = { version = "7.0.0", path = "../types", default-features = false, features = ["datasize", "gens", "json-schema", "std"] }
casper-wasm = { version = "1.0.0", default-features = false, features = ["sign_ext", "call_indirect_overlong"] }
casper-wasm-utils = { version = "4.0.0", default-features = false, features = ["sign_ext", "call_indirect_overlong"] }
casper-wasmi = { version = "1.0.0", features = ["sign_ext", "call_indirect_overlong"] }
Expand Down
2 changes: 1 addition & 1 deletion execution_engine/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! The engine which executes smart contracts on the Casper network.

#![doc(html_root_url = "https://docs.rs/casper-execution-engine/8.1.1")]
#![doc(html_root_url = "https://docs.rs/casper-execution-engine/9.0.0")]
#![doc(
html_favicon_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon_48.png",
html_logo_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon.png",
Expand Down
10 changes: 5 additions & 5 deletions execution_engine_testing/test_support/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "casper-engine-test-support"
version = "8.1.1" # when updating, also update 'html_root_url' in lib.rs
version = "9.0.0" # when updating, also update 'html_root_url' in lib.rs
authors = ["Fraser Hutchison <fraser@casperlabs.io>", "Michał Papierski <michal@casper.network>"]
edition = "2021"
description = "Library to support testing of Wasm smart contracts for use on the Casper network."
Expand All @@ -12,10 +12,10 @@ license = "Apache-2.0"

[dependencies]
blake2 = "0.9.0"
casper-storage = { version = "4.0.1", path = "../../storage" }
casper-types = { version = "6.1.0", path = "../../types" }
casper-storage = { version = "5.0.0", path = "../../storage" }
casper-types = { version = "7.0.0", path = "../../types" }
env_logger = "0.10.0"
casper-execution-engine = { version = "8.1.1", path = "../../execution_engine", features = ["test-support"] }
casper-execution-engine = { version = "9.0.0", path = "../../execution_engine", features = ["test-support"] }
humantime = "2"
filesize = "0.2.0"
lmdb-rkv = "0.14"
Expand All @@ -29,7 +29,7 @@ tempfile = "3.4.0"
toml = "0.5.6"

[dev-dependencies]
casper-types = { version = "6.1.0", path = "../../types", features = ["std"] }
casper-types = { version = "7.0.0", path = "../../types", features = ["std"] }
version-sync = "0.9.3"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion execution_engine_testing/test_support/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! A library to support testing of Wasm smart contracts for use on the Casper Platform.

#![doc(html_root_url = "https://docs.rs/casper-engine-test-support/8.1.1")]
#![doc(html_root_url = "https://docs.rs/casper-engine-test-support/9.0.0")]
#![doc(
html_favicon_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon_48.png",
html_logo_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon.png",
Expand Down
6 changes: 3 additions & 3 deletions executor/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ casper-executor-wasm-common = { version = "0.1.3", path = "../wasm_common" }
casper-executor-wasm-host = { version = "0.1.3", path = "../wasm_host" }
casper-executor-wasm-interface = { version = "0.1.3", path = "../wasm_interface" }
casper-executor-wasmer-backend = { version = "0.1.3", path = "../wasmer_backend" }
casper-storage = { version = "4.0.1", path = "../../storage" }
casper-types = { version = "6.1.0", path = "../../types", features = ["std"] }
casper-execution-engine = { version = "8.1.1", path = "../../execution_engine", features = [
casper-storage = { version = "5.0.0", path = "../../storage" }
casper-types = { version = "7.0.0", path = "../../types", features = ["std"] }
casper-execution-engine = { version = "9.0.0", path = "../../execution_engine", features = [
"test-support",
] }
digest = "0.10.7"
Expand Down
4 changes: 2 additions & 2 deletions executor/wasm_host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ base16 = "0.2"
bytes = "1.10"
casper-executor-wasm-common = { version = "0.1.3", path = "../wasm_common" }
casper-executor-wasm-interface = { version = "0.1.3", path = "../wasm_interface" }
casper-storage = { version = "4.0.1", path = "../../storage" }
casper-types = { version = "6.1.0", path = "../../types" }
casper-storage = { version = "5.0.0", path = "../../storage" }
casper-types = { version = "7.0.0", path = "../../types" }
either = "1.15"
num-derive = { workspace = true }
num-traits = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions executor/wasm_interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "Apache-2.0"
bytes = "1.10"
borsh = { version = "1.5", features = ["derive"] }
casper-executor-wasm-common = { version = "0.1.3", path = "../wasm_common" }
casper-storage = { version = "4.0.1", path = "../../storage" }
casper-types = { version = "6.1.0", path = "../../types" }
casper-storage = { version = "5.0.0", path = "../../storage" }
casper-types = { version = "7.0.0", path = "../../types" }
parking_lot = "0.12"
thiserror = "2"
4 changes: 2 additions & 2 deletions executor/wasmer_backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ bytes = "1.10"
casper-executor-wasm-common = { version = "0.1.3", path = "../wasm_common" }
casper-executor-wasm-interface = { version = "0.1.3", path = "../wasm_interface" }
casper-executor-wasm-host = { version = "0.1.0", path = "../wasm_host" }
casper-storage = { version = "4.0.1", path = "../../storage" }
casper-storage = { version = "5.0.0", path = "../../storage" }
casper-contract-sdk-sys = { version = "0.1.3", path = "../../smart_contracts/sdk_sys" }
casper-types = { version = "6.1.0", path = "../../types" }
casper-types = { version = "7.0.0", path = "../../types" }
regex = "1.11"
wasmer = { version = "5.0.4", default-features = false, features = [
"singlepass",
Expand Down
8 changes: 4 additions & 4 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "casper-node"
version = "2.1.2" # when updating, also update 'html_root_url' in lib.rs
version = "2.2.0" # when updating, also update 'html_root_url' in lib.rs
authors = ["Ed Hastings <ed@casper.network>", "Karan Dhareshwar <karan@casper.network>"]
edition = "2021"
description = "The Casper blockchain node"
Expand All @@ -23,9 +23,9 @@ base64 = "0.13.0"
bincode = "1"
bytes = "1.11.0"
casper-binary-port = { version = "1.1.1", path = "../binary_port" }
casper-storage = { version = "4.0.1", path = "../storage" }
casper-types = { version = "6.1.0", path = "../types", features = ["datasize", "json-schema", "std-fs-io"] }
casper-execution-engine = { version = "8.1.1", path = "../execution_engine" }
casper-storage = { version = "5.0.0", path = "../storage" }
casper-types = { version = "7.0.0", path = "../types", features = ["datasize", "json-schema", "std-fs-io"] }
casper-execution-engine = { version = "9.0.0", path = "../execution_engine" }
datasize = { version = "0.2.11", features = ["detailed", "fake_clock-types", "futures-types", "smallvec-types"] }
derive_more = "0.99.7"
either = { version = "1", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion node/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//! While the [`main`](fn.main.html) function is the central entrypoint for the node application,
//! its core event loop is found inside the [reactor](reactor/index.html).

#![doc(html_root_url = "https://docs.rs/casper-node/2.1.2")]
#![doc(html_root_url = "https://docs.rs/casper-node/2.2.0")]
#![doc(
html_favicon_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon_48.png",
html_logo_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon.png",
Expand Down
2 changes: 1 addition & 1 deletion smart_contracts/contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/casper-network/casper-node/tree/master/smart_co
license = "Apache-2.0"

[dependencies]
casper-types = { version = "6.1.0", path = "../../types" }
casper-types = { version = "7.0.0", path = "../../types" }
hex_fmt = "0.3.0"
version-sync = { version = "0.9", optional = true }
wee_alloc = { version = "0.4.5", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "casper-storage"
version = "4.0.1"
version = "5.0.0"
edition = "2018"
authors = ["Ed Hastings <ed@casper.network>"]
description = "Storage for a node on the Casper network."
Expand All @@ -12,7 +12,7 @@ license = "Apache-2.0"

[dependencies]
bincode = "1.3.1"
casper-types = { version = "6.1.0", path = "../types", features = ["datasize", "json-schema", "std"] }
casper-types = { version = "7.0.0", path = "../types", features = ["datasize", "json-schema", "std"] }
datasize = "0.2.4"
either = "1.8.1"
lmdb-rkv = "0.14"
Expand Down
2 changes: 1 addition & 1 deletion storage/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Storage for a node on the Casper network.

#![doc(html_root_url = "https://docs.rs/casper-storage/4.0.1")]
#![doc(html_root_url = "https://docs.rs/casper-storage/5.0.0")]
#![doc(
html_favicon_url = "https://raw.githubusercontent.com/casper-network/casper-node/master/images/CasperLabs_Logo_Favicon_RGB_50px.png",
html_logo_url = "https://raw.githubusercontent.com/casper-network/casper-node/master/images/CasperLabs_Logo_Symbol_RGB.png"
Expand Down
2 changes: 1 addition & 1 deletion types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "casper-types"
version = "6.1.0" # when updating, also update 'html_root_url' in lib.rs
version = "7.0.0" # when updating, also update 'html_root_url' in lib.rs
authors = ["Ed Hastings <ed@casper.network>"]
edition = "2021"
description = "Types shared by many casper crates for use on the Casper network."
Expand Down
2 changes: 1 addition & 1 deletion types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
)),
no_std
)]
#![doc(html_root_url = "https://docs.rs/casper-types/6.1.0")]
#![doc(html_root_url = "https://docs.rs/casper-types/7.0.0")]
#![doc(
html_favicon_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon_48.png",
html_logo_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon.png"
Expand Down