Skip to content

Commit

Permalink
Merge pull request #14 from second-state/dm4/update-20-11-3
Browse files Browse the repository at this point in the history
[Core] update oasis-core to v20.11.3
  • Loading branch information
hydai authored Oct 19, 2020
2 parents 2d6cf80 + 95ff192 commit 80b8c9c
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 23 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ stack-size = 2097152
threads = 2

[[bin]]
name = "oasis-ethwasi-runtime"
name = "oasis-ssvm-runtime"
path ="bin/main.rs"

[dependencies]
Expand All @@ -20,8 +20,8 @@ oasis-ethwasi-runtime-common = { path = "./common" }
oasis-ethwasi-runtime-keymanager = { path = "./keymanager-runtime" }

# Oasis core.
oasis-core-keymanager-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-keymanager-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }

# Parity.
common-types = { git = "https://github.com/second-state/oasis-parity", branch = "ssvm" }
Expand All @@ -45,7 +45,7 @@ slog = "2.4.1"
thiserror = "1.0"

[build-dependencies]
oasis-core-tools = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-tools = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }

[dev-dependencies]
assert_matches = "1.3.0"
Expand Down
2 changes: 1 addition & 1 deletion OASIS_CORE_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.11.2
20.11.3
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Oasis Labs Inc. <[email protected]>"]
edition = "2018"

[dependencies]
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }

ethereum-types = { version = "0.3", default-features = false, features = ["std", "serialize"] }
serde = "1.0.71"
Expand Down
4 changes: 2 additions & 2 deletions common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ authors = ["Oasis Labs Inc. <[email protected]>"]

[dependencies]
# Oasis Core.
oasis-core-keymanager-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-keymanager-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }

# Parity.
ethcore = { git = "https://github.com/second-state/oasis-parity", branch = "ssvm" }
Expand Down
6 changes: 3 additions & 3 deletions gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ wasmi = "0.4"
oasis-ethwasi-runtime-common = { path = "../common" }

## Oasis Core client dependencies.
oasis-core-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-keymanager-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }
oasis-core-keymanager-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }
oasis-ethwasi-runtime-api = { path = "../api" }

anyhow = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions genesis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ authors = ["Oasis Labs Inc. <[email protected]>"]
[dependencies]
oasis-ethwasi-runtime-common = { path = "../common" }

oasis-core-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }

clap = "2.29.1"
ethereum-types = { version = "0.3", default-features = false, features = ["std", "serialize"] }
Expand Down
8 changes: 4 additions & 4 deletions keymanager-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ stack-size = 2097152
threads = 2

[dependencies]
oasis-core-keymanager-api-common = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-keymanager-lib = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-keymanager-api-common = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }
oasis-core-keymanager-lib = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }

[build-dependencies]
oasis-core-tools = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.2" }
oasis-core-tools = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.11.3" }

[features]
benchmarking = []

0 comments on commit 80b8c9c

Please sign in to comment.