Skip to content

Commit

Permalink
Bump base.
Browse files Browse the repository at this point in the history
  • Loading branch information
abizjak committed Dec 21, 2023
1 parent b74fe98 commit 6e9de11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion concordium-base
Submodule concordium-base updated 69 files
+24 −58 .github/workflows/build-test-contracts-common.yaml
+28 −73 .github/workflows/build-test-smart-contracts.yaml
+17 −37 .github/workflows/build-test-sources.yaml
+1 −1 identity-provider-service/Cargo.lock
+4 −1 idiss-csharp/CHANGELOG.md
+162 −96 idiss-csharp/IdissLib/Idiss.cs
+1 −1 idiss-csharp/IdissLib/IdissLib.csproj
+38 −0 idiss-csharp/data/valid_request_v1.json
+4 −0 idiss/CHANGELOG.md
+2 −2 idiss/Cargo.lock
+2 −1 idiss/Cargo.toml
+32 −25 idiss/src/cs_exports.rs
+4 −0 mobile_wallet/CHANGELOG.md
+4 −3 mobile_wallet/Cargo.lock
+2 −2 mobile_wallet/Cargo.toml
+4 −0 rust-bins/CHANGELOG.md
+4 −3 rust-bins/Cargo.lock
+2 −2 rust-bins/Cargo.toml
+8 −4 rust-bins/src/bin/client.rs
+20 −25 rust-bins/src/bin/user_cli.rs
+17 −2 rust-src/Cargo.lock
+4 −2 rust-src/Cargo.toml
+12 −0 rust-src/concordium_base/CHANGELOG.md
+1 −1 rust-src/concordium_base/Cargo.toml
+78 −60 rust-src/concordium_base/benches/encrypted_transfers_benchmarks.rs
+6 −5 rust-src/concordium_base/benches/multiexp_bench.rs
+11 −2 rust-src/concordium_base/src/base.rs
+4 −1 rust-src/concordium_base/src/common/mod.rs
+0 −1 rust-src/concordium_base/src/common/serialize.rs
+53 −29 rust-src/concordium_base/src/curve_arithmetic/mod.rs
+8 −0 rust-src/concordium_base/src/ffi_helpers/common.rs
+37 −2 rust-src/concordium_base/src/id/types.rs
+6 −0 rust-src/concordium_base/src/lib.rs
+33 −2 rust-src/concordium_base/src/smart_contracts.rs
+49 −0 rust-src/concordium_base/src/transactions.rs
+13 −0 rust-src/key_derivation/CHANGELOG.md
+2 −1 rust-src/key_derivation/Cargo.toml
+307 −16 rust-src/key_derivation/src/lib.rs
+7 −0 rust-src/wallet_library/CHANGELOG.md
+28 −0 rust-src/wallet_library/Cargo.toml
+32 −0 rust-src/wallet_library/resources/ars_infos.json
+8 −0 rust-src/wallet_library/resources/global.json
+57 −0 rust-src/wallet_library/resources/identity-object.json
+13 −0 rust-src/wallet_library/resources/ip_info.json
+315 −0 rust-src/wallet_library/src/credential.rs
+356 −0 rust-src/wallet_library/src/identity.rs
+6 −0 rust-src/wallet_library/src/lib.rs
+52 −0 rust-src/wallet_library/src/test_helpers.rs
+338 −0 rust-src/wallet_library/src/wallet.rs
+2 −0 smart-contracts/contracts-common/Cargo.toml
+1 −1 smart-contracts/contracts-common/concordium-contracts-common-derive/src/lib.rs
+3 −0 smart-contracts/contracts-common/concordium-contracts-common/CHANGELOG.md
+2 −3 smart-contracts/contracts-common/concordium-contracts-common/src/schema.rs
+5 −5 smart-contracts/contracts-common/concordium-contracts-common/src/schema_json.rs
+30 −3 smart-contracts/contracts-common/concordium-contracts-common/src/types.rs
+3 −0 smart-contracts/wasm-chain-integration/CHANGELOG.md
+8 −6 smart-contracts/wasm-chain-integration/benches/v1-host-functions.rs
+5 −14 smart-contracts/wasm-chain-integration/benches/wasm.rs
+81 −40 smart-contracts/wasm-chain-integration/src/lib.rs
+72 −30 smart-contracts/wasm-chain-integration/src/utils.rs
+4 −4 smart-contracts/wasm-chain-integration/src/v1/crypto_primitives_tests.rs
+1 −0 smart-contracts/wasm-chain-integration/src/v1/ffi.rs
+401 −65 smart-contracts/wasm-chain-integration/src/v1/mod.rs
+10 −24 smart-contracts/wasm-chain-integration/src/v1/tests.rs
+11 −0 smart-contracts/wasm-chain-integration/src/v1/trie/api.rs
+23 −1 smart-contracts/wasm-chain-integration/src/v1/trie/low_level.rs
+1 −1 smart-contracts/wasm-chain-integration/src/v1/trie/types.rs
+122 −21 smart-contracts/wasm-chain-integration/src/v1/types.rs
+4 −0 smart-contracts/wasm-chain-integration/src/validation_tests.rs

0 comments on commit 6e9de11

Please sign in to comment.