Skip to content

Commit 910b0d2

Browse files
committed
impl_all feature is added
1 parent a95367d commit 910b0d2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,21 +35,21 @@ jobs:
3535
run: cargo install cargo-no-std-check
3636

3737
- name: Build
38-
run: cargo build --verbose
38+
run: cargo build --verbose --features impl_all
3939
- name: Build-32bit
4040
run: cargo build --verbose --target i686-unknown-linux-musl
4141
- name: Build-wasm
4242
run: cargo build --verbose --no-default-features --target wasm32v1-none
4343

4444
- name: Test
45-
run: cargo test --verbose
45+
run: cargo test --verbose --features impl_all
4646
- name: Test-32bit
4747
run: cargo test --verbose --target i686-unknown-linux-musl
4848
- name: Check-wasm
4949
run: cargo check --verbose --no-default-features --target wasm32v1-none
5050

5151
- name: Clippy
52-
run: cargo clippy -- -D warnings --verbose
52+
run: cargo clippy --features impl_all -- -D warnings --verbose
5353

5454
- name: Miri
5555
run: cargo +nightly miri test --verbose

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ categories = ["algorithms", "data-structures", "mathematics", "no-std"]
1414
default = ["std"]
1515
std = []
1616
impl_priority_queue = ["priority-queue"]
17+
impl_all = ["impl_priority_queue"]
1718

1819
[dependencies]
1920
priority-queue = { version = "2.3", optional = true }

0 commit comments

Comments
 (0)