Skip to content

feat: add rb_tree to ic_certification crate #226

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup-dfx/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
- name: Install dfx
uses: dfinity/setup-dfx@main
with:
dfx-version: '0.14.2'
dfx-version: '0.15.1'

- name: Configure DFX
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh

- name: Build Cargo crates
run: cargo build --release
run: cargo build --release --workspace --exclude certified_counter_backend

- name: DFX prepare Certified Counter
working-directory: examples/certified-counter
Expand Down
72 changes: 59 additions & 13 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
members = [
"examples/rust",
"examples/certified-counter/src/backend",
"packages/ic-cbor",
"packages/ic-certification",
"packages/ic-certificate-verification",
Expand All @@ -14,7 +15,6 @@ members = [
# https://github.com/rust-lang/cargo/issues/9406
# these projects need wasm32-unknown-unknown as their target
exclude = [
"examples/certified-counter/src/backend",
"packages/ic-response-verification-wasm",
"packages/ic-certification-testing-wasm",
]
Expand Down
Loading