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
20 changes: 20 additions & 0 deletions .github/workflows/ci-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,26 @@ on:
pull_request:

jobs:
cargo-deny:
name: Cargo Deny
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6

- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ inputs.toolchain }}

- name: Cache cargo
uses: Swatinem/rust-cache@v2

- name: Run cargo-deny
uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check

reject-trailing-whitespace:
uses: ./.github/workflows/trailing-whitespace.yaml

Expand Down
19 changes: 19 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
targets = []
all-features = false
no-default-features = false
exclude = ["bincode", "json"]


[bans]
multiple-versions = "warn"
Expand All @@ -15,3 +17,20 @@ deny = [
{ crate = "boring", reason = "Use rustls or other pure-Rust TLS implementations instead" },
{ crate = "boring-sys", reason = "Use rustls or other pure-Rust TLS implementations instead" },
]

[licenses]
confidence-threshold = 0.93
allow = [
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"MIT",
"BSD-3-Clause",
"BSD-2-Clause",
"Unicode-3.0",
"ISC",
"CC0-1.0",
"CDLA-Permissive-2.0",
"Unlicense",
"MPL-2.0",
"Zlib",
]
1 change: 1 addition & 0 deletions regtest-launcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "regtest-launcher"
version = "0.0.0"
edition = "2024"
license = "MIT"

[dependencies]
bip0039 = "0.12.0"
Expand Down
Loading