Skip to content

Commit 2fa467e

Browse files
authored
Merge pull request #5245 from zajko/transaction_invocation_target_json_representation_fix
Changing json serialization for 'version_key' of TransactionInvocatio…
2 parents cd7f3ae + 6a80492 commit 2fa467e

File tree

24 files changed

+97
-81
lines changed

24 files changed

+97
-81
lines changed

Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

binary_port/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "casper-binary-port"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
edition = "2018"
55
description = "Types for the casper node binary port"
66
documentation = "https://docs.rs/casper-binary-port"
@@ -13,7 +13,7 @@ exclude = ["proptest-regressions"]
1313
[dependencies]
1414
bincode = "1.3.3"
1515
bytes = "1.0.1"
16-
casper-types = { version = "5.0.2", path = "../types", features = ["datasize", "json-schema", "std"] }
16+
casper-types = { version = "6.0.0", path = "../types", features = ["datasize", "json-schema", "std"] }
1717
num-derive = { workspace = true }
1818
num-traits = { workspace = true }
1919
once_cell = { version = "1.5.2" }

execution_engine/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "casper-execution-engine"
3-
version = "8.0.1" # when updating, also update 'html_root_url' in lib.rs
4-
authors = ["Henry Till <[email protected]>", "Ed Hastings <ed@casper.network>", "Michał Papierski <[email protected]>"]
3+
version = "8.1.0" # when updating, also update 'html_root_url' in lib.rs
4+
authors = ["Henry Till <[email protected]>", "Ed Hastings <ed@casperlabs.io>", "Michał Papierski <[email protected]>"]
55
edition = "2021"
66
description = "Casper execution engine crates."
77
readme = "README.md"
@@ -17,8 +17,8 @@ bincode = "1.3.1"
1717
blake2 = { version = "0.10.6", default-features = false }
1818
blake3 = { version = "1.5.0", default-features = false, features = ["pure"] }
1919
sha2 = { version = "0.10.8", default-features = false }
20-
casper-storage = { version = "2.0.1", path = "../storage", default-features = true }
21-
casper-types = { version = "5.0.2", path = "../types", default-features = false, features = ["datasize", "gens", "json-schema", "std"] }
20+
casper-storage = { version = "2.1.0", path = "../storage", default-features = true }
21+
casper-types = { version = "6.0.0", path = "../types", default-features = false, features = ["datasize", "gens", "json-schema", "std"] }
2222
casper-wasm = { version = "0.46.0", default-features = false, features = ["sign_ext"] }
2323
casper-wasm-utils = { version = "3.0.0", default-features = false, features = ["sign_ext"] }
2424
casper-wasmi = { version = "0.14.0", features = ["sign_ext"] }

execution_engine/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! The engine which executes smart contracts on the Casper network.
22
3-
#![doc(html_root_url = "https://docs.rs/casper-execution-engine/8.0.1")]
3+
#![doc(html_root_url = "https://docs.rs/casper-execution-engine/8.1.0")]
44
#![doc(
55
html_favicon_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon_48.png",
66
html_logo_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon.png",

execution_engine_testing/test_support/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "casper-engine-test-support"
3-
version = "8.0.1" # when updating, also update 'html_root_url' in lib.rs
3+
version = "8.1.0" # when updating, also update 'html_root_url' in lib.rs
44
authors = ["Fraser Hutchison <[email protected]>", "Michał Papierski <[email protected]>"]
55
edition = "2021"
66
description = "Library to support testing of Wasm smart contracts for use on the Casper network."
@@ -12,10 +12,10 @@ license = "Apache-2.0"
1212

1313
[dependencies]
1414
blake2 = "0.9.0"
15-
casper-storage = { version = "2.0.1", path = "../../storage" }
16-
casper-types = { version = "5.0.2", path = "../../types" }
15+
casper-storage = { version = "2.1.0", path = "../../storage" }
16+
casper-types = { version = "6.0.0", path = "../../types" }
1717
env_logger = "0.10.0"
18-
casper-execution-engine = { version = "8.0.1", path = "../../execution_engine", features = ["test-support"] }
18+
casper-execution-engine = { version = "8.1.0", path = "../../execution_engine", features = ["test-support"] }
1919
humantime = "2"
2020
filesize = "0.2.0"
2121
lmdb-rkv = "0.14"
@@ -29,7 +29,7 @@ tempfile = "3.4.0"
2929
toml = "0.5.6"
3030

3131
[dev-dependencies]
32-
casper-types = { version = "5.0.2", path = "../../types", features = ["std"] }
32+
casper-types = { version = "6.0.0", path = "../../types", features = ["std"] }
3333
version-sync = "0.9.3"
3434

3535
[build-dependencies]

execution_engine_testing/test_support/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! A library to support testing of Wasm smart contracts for use on the Casper Platform.
22
3-
#![doc(html_root_url = "https://docs.rs/casper-engine-test-support/8.0.1")]
3+
#![doc(html_root_url = "https://docs.rs/casper-engine-test-support/8.1.0")]
44
#![doc(
55
html_favicon_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon_48.png",
66
html_logo_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon.png",

executor/wasm/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "casper-executor-wasm"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["Michał Papierski <[email protected]>"]
66
description = "Casper executor wasm package"
@@ -12,13 +12,13 @@ license = "Apache-2.0"
1212
blake2 = "0.10"
1313
borsh = { version = "1.5", features = ["derive"] }
1414
bytes = "1.10"
15-
casper-executor-wasm-common = { version = "0.1.1", path = "../wasm_common" }
16-
casper-executor-wasm-host = { version = "0.1.1", path = "../wasm_host" }
17-
casper-executor-wasm-interface = { version = "0.1.1", path = "../wasm_interface" }
18-
casper-executor-wasmer-backend = { version = "0.1.1", path = "../wasmer_backend" }
19-
casper-storage = { version = "2.0.1", path = "../../storage" }
20-
casper-types = { version = "5.0.2", path = "../../types", features = ["std"] }
21-
casper-execution-engine = { version = "8.0.1", path = "../../execution_engine", features = [
15+
casper-executor-wasm-common = { version = "0.1.2", path = "../wasm_common" }
16+
casper-executor-wasm-host = { version = "0.1.2", path = "../wasm_host" }
17+
casper-executor-wasm-interface = { version = "0.1.2", path = "../wasm_interface" }
18+
casper-executor-wasmer-backend = { version = "0.1.2", path = "../wasmer_backend" }
19+
casper-storage = { version = "2.1.0", path = "../../storage" }
20+
casper-types = { version = "6.0.0", path = "../../types", features = ["std"] }
21+
casper-execution-engine = { version = "8.1.0", path = "../../execution_engine", features = [
2222
"test-support",
2323
] }
2424
digest = "0.10.7"

executor/wasm_common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "casper-executor-wasm-common"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["Michał Papierski <[email protected]>"]
66
description = "Casper executor common package"
@@ -12,7 +12,7 @@ license = "Apache-2.0"
1212
bitflags = "2.9"
1313
blake2 = "0.10"
1414
borsh = { version = "1.5", features = ["derive"] }
15-
casper-contract-sdk-sys = { version = "0.1.1", path = "../../smart_contracts/sdk_sys" }
15+
casper-contract-sdk-sys = { version = "0.1.2", path = "../../smart_contracts/sdk_sys" }
1616
num-derive = { workspace = true }
1717
num-traits = { workspace = true }
1818
thiserror = "2"

executor/wasm_host/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "casper-executor-wasm-host"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["Michał Papierski <[email protected]>"]
66
description = "Casper executor host package"
@@ -11,10 +11,10 @@ license = "Apache-2.0"
1111
[dependencies]
1212
base16 = "0.2"
1313
bytes = "1.10"
14-
casper-executor-wasm-common = { version = "0.1.1", path = "../wasm_common" }
15-
casper-executor-wasm-interface = { version = "0.1.1", path = "../wasm_interface" }
16-
casper-storage = { version = "2.0.1", path = "../../storage" }
17-
casper-types = { version = "5.0.2", path = "../../types" }
14+
casper-executor-wasm-common = { version = "0.1.2", path = "../wasm_common" }
15+
casper-executor-wasm-interface = { version = "0.1.2", path = "../wasm_interface" }
16+
casper-storage = { version = "2.1.0", path = "../../storage" }
17+
casper-types = { version = "6.0.0", path = "../../types" }
1818
either = "1.15"
1919
num-derive = { workspace = true }
2020
num-traits = { workspace = true }

executor/wasm_interface/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "casper-executor-wasm-interface"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["Michał Papierski <[email protected]>"]
66
description = "Casper executor interface package"
@@ -11,8 +11,8 @@ license = "Apache-2.0"
1111
[dependencies]
1212
bytes = "1.10"
1313
borsh = { version = "1.5", features = ["derive"] }
14-
casper-executor-wasm-common = { version = "0.1.1", path = "../wasm_common" }
15-
casper-storage = { version = "2.0.1", path = "../../storage" }
16-
casper-types = { version = "5.0.2", path = "../../types" }
14+
casper-executor-wasm-common = { version = "0.1.2", path = "../wasm_common" }
15+
casper-storage = { version = "2.1.0", path = "../../storage" }
16+
casper-types = { version = "6.0.0", path = "../../types" }
1717
parking_lot = "0.12"
1818
thiserror = "2"

0 commit comments

Comments
 (0)