Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.1.1 preparation #42

Merged
merged 2 commits into from
Mar 1, 2024
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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
with:
components: clippy
- uses: actions/checkout@v4
- run: cargo clippy --all-features --all-targets
- run: cargo clippy --locked --all-features --all-targets
rustdoc:
runs-on: ubuntu-20.04
steps:
- uses: dtolnay/rust-toolchain@stable
- uses: actions/checkout@v4
- run: cargo doc --all-features
- run: cargo doc --locked --all-features
build:
name: "Build and test"
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -52,19 +52,19 @@ jobs:
targets: x86_64-unknown-none

- name: cargo test (debug)
run: cargo test
run: cargo test --locked
env:
RUST_BACKTRACE: 1
RUSTFLAGS: "-D warnings"

- name: cargo test (release)
run: cargo test --release
run: cargo test --locked --release
env:
RUSTFLAGS: "-D warnings"

# this target does _not_ include the libstd crate in its sysroot
# it will catch unwanted usage of libstd in _dependencies_
- name: cargo build no-std mode
run: cargo build --no-default-features --target x86_64-unknown-none
run: cargo build --locked --no-default-features --target x86_64-unknown-none
env:
RUSTFLAGS: "-D warnings"
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
/target
Cargo.lock
.idea
30 changes: 30 additions & 0 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustls-pemfile"
version = "2.1.0"
version = "2.1.1"
edition = "2018"
license = "Apache-2.0 OR ISC OR MIT"
readme = "README.md"
Expand Down