Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/der.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- uses: RustCrypto/actions/cargo-hack-install@master
- run: cargo hack build --target ${{ matrix.target }} --feature-powerset --exclude-features arbitrary,std
- run: cargo hack build --target ${{ matrix.target }} --feature-powerset --exclude-features arbitrary,std,heapless

minimal-versions:
if: false # TODO: temp disabled due to unpublished prerelease dependencies
Expand Down Expand Up @@ -89,10 +89,10 @@ jobs:
targets: ${{ matrix.target }}
- run: ${{ matrix.deps }}
- uses: RustCrypto/actions/cargo-hack-install@master
- run: cargo hack test --feature-powerset --exclude-features arbitrary,std
- run: cargo hack test --feature-powerset --exclude-features arbitrary,std,heapless
- run: cargo test --features arbitrary
- run: cargo test --features std
- run: cargo test --all-features
#- run: cargo test --all-features # TODO(tarcieri): test heapless

derive:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 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 der/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ flagset = { version = "0.4.7", optional = true }
pem-rfc7468 = { version = "1", optional = true, features = ["alloc"] }
time = { version = "0.3.4", optional = true, default-features = false }
zeroize = { version = "1.8", optional = true, default-features = false }
heapless = { version = "0.8", optional = true, default-features = false }
heapless = { version = "0.9", optional = true, default-features = false }

[dev-dependencies]
hex-literal = "1"
Expand Down