Skip to content

Commit c8edca7

Browse files
committed
feat: add rb_tree to ic_certification crate
1 parent c654194 commit c8edca7

File tree

33 files changed

+1562
-1190
lines changed

33 files changed

+1562
-1190
lines changed

.github/actions/setup-dfx/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
- name: Install dfx
1414
uses: dfinity/setup-dfx@main
1515
with:
16-
dfx-version: '0.14.2'
16+
dfx-version: '0.15.1'
1717

1818
- name: Configure DFX
1919
shell: bash

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
2929

3030
- name: Build Cargo crates
31-
run: cargo build --release
31+
run: cargo build --release --workspace --exclude certified_counter_backend
3232

3333
- name: DFX prepare Certified Counter
3434
working-directory: examples/certified-counter

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[workspace]
22
members = [
33
"examples/rust",
4+
"examples/certified-counter/src/backend",
45
"packages/ic-cbor",
56
"packages/ic-certification",
67
"packages/ic-certificate-verification",
@@ -14,7 +15,6 @@ members = [
1415
# https://github.com/rust-lang/cargo/issues/9406
1516
# these projects need wasm32-unknown-unknown as their target
1617
exclude = [
17-
"examples/certified-counter/src/backend",
1818
"packages/ic-response-verification-wasm",
1919
"packages/ic-certification-testing-wasm",
2020
]

0 commit comments

Comments
 (0)