Fixing docs build + publishing 4.0.1 (#409)

This commit is contained in:
Kevin Lewi
2025-10-30 17:09:53 -07:00
committed by GitHub
parent ed5e7cf116
commit 75fe4cdddb
4 changed files with 13 additions and 10 deletions
+8 -8
View File
@@ -206,14 +206,6 @@ jobs:
command: clippy
args: --all-targets --features argon2,std,curve25519,ecdsa,ed25519 -- -D warnings
- name: Run cargo doc
uses: actions-rs/cargo@v1
env:
RUSTDOCFLAGS: -D warnings
with:
command: doc
args: --no-deps --document-private-items --features argon2,std,curve25519,ecdsa,ed25519
format:
name: cargo fmt
runs-on: ubuntu-latest
@@ -235,6 +227,14 @@ jobs:
command: fmt
args: --all -- --check
- name: Run cargo doc
uses: actions-rs/cargo@v1
env:
RUSTDOCFLAGS: -D warnings
with:
command: doc
args: --no-deps --document-private-items --features argon2,std,curve25519,ecdsa,ed25519
taplo:
name: Taplo
runs-on: ubuntu-latest
+3
View File
@@ -1,5 +1,8 @@
# Changelog
## 4.0.1 (October 30, 2025)
* Fixing docs building issue
## 4.0.0 (October 23, 2025)
* Increased MSRV to 1.83
* Synced implementation with RFC 9807 (no core protocol changes)
+1 -1
View File
@@ -10,7 +10,7 @@ name = "opaque-ke"
readme = "README.md"
repository = "https://github.com/facebook/opaque-ke"
rust-version = "1.85"
version = "4.0.0"
version = "4.0.1"
[features]
argon2 = ["dep:argon2"]
+1 -1
View File
@@ -1318,7 +1318,7 @@
//! [curve25519-dalek]: https://docs.rs/curve25519-dalek/4/curve25519_dalek/index.html#backends
#![no_std]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(not(test), deny(unsafe_code))]
#![warn(clippy::cargo, clippy::doc_markdown, missing_docs, rustdoc::all)]
#![cfg_attr(not(test), warn(unused_crate_dependencies))]