Skip to content

Commit

Permalink
submodules: bump external/oasis-sdk from 6590ae6 to 1c49e4c
Browse files Browse the repository at this point in the history
Bumps [external/oasis-sdk](https://github.com/oasisprotocol/oasis-sdk) from `6590ae6` to `1c49e4c`.
- [Commits](oasisprotocol/oasis-sdk@6590ae6...1c49e4c)

---
updated-dependencies:
- dependency-name: external/oasis-sdk
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 16, 2023
1 parent c7a21a4 commit ec73979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/oasis-sdk
Submodule oasis-sdk updated 98 files
+0 −2 .cargo/audit.toml
+4 −4 .github/workflows/benchmarking-image.yml
+118 −0 .github/workflows/ci-dependabot-fixup.yml
+2 −2 .github/workflows/ci-examples.yml
+6 −6 .github/workflows/ci-lint.yml
+2 −2 .github/workflows/ci-longtest.yaml
+25 −5 .github/workflows/ci-test.yaml
+3 −3 .github/workflows/runtime-builder-image.yml
+1 −0 .gitignore
+22 −1 .golangci.yml
+507 −544 Cargo.lock
+4 −0 Cargo.toml
+0 −6 README.md
+4 −4 client-sdk/go/callformat/callformat.go
+2 −2 client-sdk/go/client/client.go
+1 −1 client-sdk/go/config/default.go
+1 −1 client-sdk/go/connection/connection.go
+1 −1 client-sdk/go/crypto/signature/ed25519/signer.go
+1 −1 client-sdk/go/crypto/signature/secp256k1/secp256k1_test.go
+1 −1 client-sdk/go/crypto/signature/sr25519/signer.go
+46 −35 client-sdk/go/go.mod
+235 −83 client-sdk/go/go.sum
+1 −1 client-sdk/go/helpers/address.go
+1 −1 client-sdk/go/modules/consensusaccounts/types.go
+1 −0 client-sdk/go/modules/evm/signed_calls_test.go
+1 −2 client-sdk/go/testing/testing.go
+1 −1 client-sdk/go/testing/testing_test.go
+5 −2 client-sdk/go/types/callformat.go
+3 −2 client-sdk/go/types/event_test.go
+2 −1 client-sdk/go/types/keymanager.go
+1 −1 client-sdk/go/types/token.go
+4 −4 client-sdk/go/types/transaction.go
+1 −2 client-sdk/go/types/transaction_test.go
+1 −1 client-sdk/ts-web/core/playground/sample-envoy.yaml
+36 −34 client-sdk/ts-web/core/reflect-go/go.mod
+178 −73 client-sdk/ts-web/core/reflect-go/go.sum
+2 −9 client-sdk/ts-web/core/reflect-go/main.go
+170 −74 client-sdk/ts-web/core/src/client.ts
+0 −10 client-sdk/ts-web/core/src/roothash.ts
+607 −115 client-sdk/ts-web/core/src/types.ts
+461 −539 contract-sdk/specs/access/oas173/Cargo.lock
+461 −539 contract-sdk/specs/token/oas20/Cargo.lock
+1 −1 docker/runtime-builder/Dockerfile
+8 −8 docs/runtime/prerequisites.md
+7 −7 examples/client-sdk/go/minimal-runtime-client/go.mod
+15 −15 examples/client-sdk/go/minimal-runtime-client/go.sum
+13 −5 runtime-sdk/Cargo.toml
+69 −45 runtime-sdk/modules/evm/src/precompile/confidential.rs
+11 −11 runtime-sdk/src/callformat.rs
+0 −25 runtime-sdk/src/context.rs
+2 −3 runtime-sdk/src/crypto/random.rs
+81 −37 runtime-sdk/src/crypto/signature/mod.rs
+7 −22 runtime-sdk/src/crypto/signature/secp256k1.rs
+7 −23 runtime-sdk/src/crypto/signature/secp256r1.rs
+141 −0 runtime-sdk/src/crypto/signature/secp384r1.rs
+10 −15 runtime-sdk/src/dispatcher.rs
+3 −3 runtime-sdk/src/history.rs
+58 −63 runtime-sdk/src/keymanager.rs
+4 −0 runtime-sdk/src/modules/accounts/mod.rs
+13 −0 runtime-sdk/src/modules/accounts/test.rs
+4 −4 runtime-sdk/src/modules/consensus/mod.rs
+1 −5 runtime-sdk/src/modules/consensus_accounts/test.rs
+2 −3 runtime-sdk/src/modules/core/mod.rs
+3 −1 runtime-sdk/src/runtime.rs
+1 −4 runtime-sdk/src/schedule_control.rs
+7 −9 runtime-sdk/src/storage/current.rs
+7 −18 runtime-sdk/src/storage/mkvs.rs
+3 −7 runtime-sdk/src/testing/keymanager.rs
+1 −4 runtime-sdk/src/testing/mock.rs
+2 −2 runtime-sdk/src/types/callformat.rs
+10 −24 tests/benchmark/cmd/fixture.go
+68 −78 tests/benchmark/go.mod
+178 −165 tests/benchmark/go.sum
+1 −1 tests/benchmark/run-benchmarks.sh
+0 −1 tests/check-core-versions.sh
+2 −2 tests/consts.sh
+6 −6 tests/contracts/bench/Cargo.lock
+461 −539 tests/contracts/hello/Cargo.lock
+1 −1 tests/download-artifacts.sh
+5 −5 tests/e2e/contracts.go
+37 −27 tests/e2e/evmtest.go
+68 −70 tests/e2e/go.mod
+223 −155 tests/e2e/go.sum
+82 −9 tests/e2e/runtime.go
+41 −21 tests/e2e/simple_consensus.go
+18 −19 tests/e2e/simplekvtest.go
+6 −6 tests/e2e/simplekvtest_txgens.go
+1 −1 tests/e2e/txgen/generators.go
+3 −3 tests/e2e/txgen/txgen.go
+1 −1 tests/run-e2e.sh
+65 −30 tools/gen_runtime_vectors/go.mod
+263 −76 tools/gen_runtime_vectors/go.sum
+11 −0 tools/gomod-updater/README.md
+13 −0 tools/gomod-updater/go.mod
+12 −0 tools/gomod-updater/go.sum
+139 −0 tools/gomod-updater/main.go
+29 −22 tools/orc/go.mod
+46 −44 tools/orc/go.sum

0 comments on commit ec73979

Please sign in to comment.