digest: add CoreProxy::compose/decompose methods (#1898)
#2417
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: password-hash | |
| on: | |
| pull_request: | |
| paths: | |
| - "password-hash/**" | |
| - "Cargo.*" | |
| push: | |
| branches: master | |
| defaults: | |
| run: | |
| working-directory: password-hash | |
| env: | |
| CARGO_INCREMENTAL: 0 | |
| RUSTFLAGS: "-Dwarnings" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| rust: | |
| - 1.85.0 # MSRV | |
| - stable | |
| target: | |
| - thumbv7em-none-eabi | |
| - wasm32-unknown-unknown | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: RustCrypto/actions/cargo-cache@master | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.rust }} | |
| targets: ${{ matrix.target }} | |
| - run: cargo build --target ${{ matrix.target }} --release --no-default-features | |
| - run: cargo build --target ${{ matrix.target }} --release --no-default-features --features alloc | |
| - run: cargo build --target ${{ matrix.target }} --release --no-default-features --features rand_core | |
| # TODO: use the reusable workflow after this crate will be part of the | |
| # toot workspace | |
| minimal-versions: | |
| if: false # disabled until we stop using pre-releases | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: RustCrypto/actions/cargo-cache@master | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: nightly | |
| - uses: RustCrypto/actions/cargo-hack-install@master | |
| - run: cargo update -Z minimal-versions | |
| - run: cargo hack test --release --feature-powerset | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| rust: | |
| - 1.85.0 # MSRV | |
| - stable | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: RustCrypto/actions/cargo-cache@master | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.rust }} | |
| - run: cargo check --all-features | |
| - run: cargo test --release --no-default-features | |
| - run: cargo test --release | |
| - run: cargo test --release --all-features |