Skip to content
Closed
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
25 changes: 15 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,16 +234,21 @@ jobs:
# Checks: security advisories, license compatibility, duplicate crates,
# banned crates, and allowed source registries. Supersedes cargo-audit for
# advisory coverage and adds the licence + bans checks on top.
deny:
name: cargo-deny
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: EmbarkStudios/cargo-deny-action@v2
with:
# Treat any advisory or licence violation as an error.
# deny.toml in the repo root configures the exact policy.
command: check
#
# Currently DISABLED — the cargo-deny 0.19.x bundled in
# `EmbarkStudios/cargo-deny-action@v2` has a parser bug that crashes on
# any advisory with a CVSS 4.0 vector (the advisory DB now ships ~50
# such entries starting with RUSTSEC-2026-0076 in libcrux-ml-dsa).
# Re-enable once cargo-deny supports CVSS 4.0. None of the affected
# crates are in nexrade-cache's dep tree (verified with `cargo tree`).
# deny:
# name: cargo-deny
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v6
# - uses: EmbarkStudios/cargo-deny-action@v2
# with:
# command: check

# ─── MSRV (Minimum Supported Rust Version) ──────────────────────────────────
# Skipped on PRs — a full double-build (~10 min) is better suited for main.
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,9 @@ jobs:
tool: cross

- name: Install packaging tools
run: cargo install cargo-deb cargo-generate-rpm --locked
uses: taiki-e/install-action@v2
with:
tool: cargo-deb,cargo-generate-rpm

- name: Build (native)
if: matrix.cross == false
Expand Down
67 changes: 38 additions & 29 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.1.0"
version = "0.2.1"
edition = "2021"
authors = ["Nexrade Contributors"]
license = "MIT OR Apache-2.0"
Expand All @@ -29,13 +29,13 @@ bytes = { version = "1", features = ["serde"] }
futures = "0.3"

# Serialization
serde = { version = "1", features = ["derive"] }
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
toml = "1.1"

# Error handling
thiserror = "1"
anyhow = "1"
anyhow = "1.0.103"

# Logging / tracing
tracing = "0.1"
Expand Down
Loading