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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,4 @@ jobs:
toolchain: "1.85"

- name: Check MSRV
run: cargo check --locked --all-features
run: cargo check --locked --all-features -p upki -p rustls-upki -p upki-openssl -p upki-cli
10 changes: 8 additions & 2 deletions .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,11 @@ jobs:

- name: clang-format
run: |
clang-format -i upki/ffi-example/upki-demo.c
git diff --exit-code
clang-format -i upki/ffi-example/upki-demo.c
git diff --exit-code

audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: EmbarkStudios/cargo-deny-action@v2
24 changes: 10 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[licenses]
version = 2
allow = [
"Apache-2.0",
"BSD-3-Clause",
"CDLA-Permissive-2.0",
"ISC",
"MIT",
"MPL-2.0",
"Unicode-3.0",
]
private = { ignore = true }

[advisories]
ignore = [
"RUSTSEC-2025-0141", # bincode is unmaintained; going away with newer CRLite versions
]
1 change: 1 addition & 0 deletions revoke-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.1.0"
rust-version.workspace = true
edition.workspace = true
repository.workspace = true
publish = false

[dependencies]
aws-lc-rs.workspace = true
Expand Down
Loading