Enable rustls/std feature (#494)

This commit is contained in:
Nikolay Kim 2024-12-30 18:40:31 +05:00 committed by GitHub
parent 48702413f3
commit 5fd9d7ce90
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 35 additions and 31 deletions

View file

@ -4,7 +4,7 @@ on: [push, pull_request]
jobs:
check:
name: Check for build failures
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
@ -12,7 +12,7 @@ jobs:
with:
toolchain: stable
- run:
cargo check --all --no-default-features --features="ntex/compio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws,ntex/brotli"
cargo check --tests --all --no-default-features --features="ntex/compio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws,ntex/brotli"
clippy:
name: Clippy
@ -24,7 +24,7 @@ jobs:
toolchain: stable
components: clippy
- run:
cargo test --all --no-default-features --features="ntex/compio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws,ntex/brotli"
cargo clippy --tests --all --no-default-features --features="ntex/compio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws,ntex/brotli"
fmt:
name: Rustfmt