-
Notifications
You must be signed in to change notification settings - Fork 664
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump Borsh and runtime version (#2232)
* Bump Borsh version * Nit * Bump Borsh versions * Bump borsh more
- Loading branch information
1 parent
f127f55
commit 909d10a
Showing
24 changed files
with
95 additions
and
83 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
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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ authors = ["Near Inc <[email protected]>"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
borsh = "0.2.10" | ||
borsh = "0.5.0" | ||
byteorder = "1.2" | ||
indicatif = "0.13.0" | ||
clap = "2.33.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "near-runtime-fees" | ||
version = "0.4.5" | ||
version = "0.5.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "near-vm-errors" | ||
version = "0.4.5" | ||
version = "0.5.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -13,7 +13,7 @@ Error that can occur inside Near Runtime encapsulated in a separate crate. Might | |
""" | ||
|
||
[dependencies] | ||
borsh = "0.2.10" | ||
borsh = "0.5.0" | ||
near-rpc-error-macro = { path = "../../tools/rpctypegen/macro", version = "0.1.0" } | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
||
|
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 = "near-vm-logic" | ||
version = "0.4.5" | ||
version = "0.5.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -16,8 +16,8 @@ This crate implements the specification of the interface that Near blockchain ex | |
byteorder = "1.2" | ||
bs58 = "0.3" | ||
serde = { version = "1.0", features = ["derive"] } | ||
near-runtime-fees = { path = "../near-runtime-fees", version = "0.4.5" } | ||
near-vm-errors = { path = "../near-vm-errors", version = "0.4.5" } | ||
near-runtime-fees = { path = "../near-runtime-fees", version = "0.5.0" } | ||
near-vm-errors = { path = "../near-vm-errors", version = "0.5.0" } | ||
|
||
[dev-dependencies] | ||
serde_json = {version= "1.0", features= ["preserve_order"]} | ||
|
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 = "near-vm-runner-standalone" | ||
version = "0.4.5" | ||
version = "0.5.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -21,6 +21,6 @@ to make sure it has expected behavior once deployed to the blockchain. | |
[dependencies] | ||
serde_json = "1.0" | ||
clap = "2.33.0" | ||
near-vm-logic = { path = "../near-vm-logic", version = "0.4.5"} | ||
near-vm-runner = { path = "../near-vm-runner", version = "0.4.5" } | ||
near-runtime-fees = { path = "../near-runtime-fees", version = "0.4.5" } | ||
near-vm-logic = { path = "../near-vm-logic", version = "0.5.0"} | ||
near-vm-runner = { path = "../near-vm-runner", version = "0.5.0" } | ||
near-runtime-fees = { path = "../near-runtime-fees", version = "0.5.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "near-vm-runner" | ||
version = "0.4.5" | ||
version = "0.5.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -16,9 +16,9 @@ This crate implements the specification of the interface that Near blockchain ex | |
cached = "0.11.0" | ||
wasmer-runtime = { version = "0.13.1", features = ["default-backend-singlepass"], default-features = false } | ||
wasmer-runtime-core = { version = "0.13.1" } | ||
near-runtime-fees = { path="../near-runtime-fees", version = "0.4.5" } | ||
near-vm-logic = { path="../near-vm-logic", version = "0.4.5", default-features = false, features = []} | ||
near-vm-errors = { path = "../near-vm-errors", version = "0.4.5" } | ||
near-runtime-fees = { path="../near-runtime-fees", version = "0.5.0" } | ||
near-vm-logic = { path="../near-vm-logic", version = "0.5.0", default-features = false, features = []} | ||
near-vm-errors = { path = "../near-vm-errors", version = "0.5.0" } | ||
pwasm-utils = "0.12.0" | ||
parity-wasm = "0.41.0" | ||
wasmparser = "0.44" | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ authors = ["Near Inc <[email protected]>"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
borsh = "0.2.10" | ||
borsh = "0.5.0" | ||
indicatif = {version = "0.13.0", features = ["with_rayon"]} | ||
rayon = "1.1" | ||
tempdir = "0.3.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
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