Skip to content
Draft
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,16 +90,16 @@ jobs:
matrix:
name:
- btreemap
- btreeset
# - btreeset
- io_chunks
- memory-manager
- nns
- vec
include:
- name: btreemap
project_dir: ./benchmarks/btreemap
- name: btreeset
project_dir: ./benchmarks/btreeset
# - name: btreeset
# project_dir: ./benchmarks/btreeset
- name: io_chunks
project_dir: ./benchmarks/io_chunks
- name: memory-manager
Expand Down
11 changes: 10 additions & 1 deletion Cargo.lock

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

9 changes: 5 additions & 4 deletions benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ canbench-rs.workspace = true
candid.workspace = true
ic-cdk-macros.workspace = true
ic-cdk.workspace = true
ic-stable-structures = { path = "../", features = [] }
#ic-stable-structures = { path = "../", features = [] }
ic-stable-structures = { version = "=0.6.7", features = [] }
maplit.workspace = true
serde.workspace = true
tiny-rng.workspace = true
Expand All @@ -22,9 +23,9 @@ path = "src/lib.rs"
name = "btreemap"
path = "btreemap/src/main.rs"

[[bin]]
name = "btreeset"
path = "btreeset/src/main.rs"
# [[bin]]
# name = "btreeset"
# path = "btreeset/src/main.rs"

[[bin]]
name = "io_chunks"
Expand Down
Loading