Fixing docs build + publishing 4.0.1 (#409)
This commit is contained in:
@@ -206,14 +206,6 @@ jobs:
|
|||||||
command: clippy
|
command: clippy
|
||||||
args: --all-targets --features argon2,std,curve25519,ecdsa,ed25519 -- -D warnings
|
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:
|
format:
|
||||||
name: cargo fmt
|
name: cargo fmt
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -235,6 +227,14 @@ jobs:
|
|||||||
command: fmt
|
command: fmt
|
||||||
args: --all -- --check
|
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:
|
taplo:
|
||||||
name: Taplo
|
name: Taplo
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 4.0.1 (October 30, 2025)
|
||||||
|
* Fixing docs building issue
|
||||||
|
|
||||||
## 4.0.0 (October 23, 2025)
|
## 4.0.0 (October 23, 2025)
|
||||||
* Increased MSRV to 1.83
|
* Increased MSRV to 1.83
|
||||||
* Synced implementation with RFC 9807 (no core protocol changes)
|
* Synced implementation with RFC 9807 (no core protocol changes)
|
||||||
|
|||||||
+1
-1
@@ -10,7 +10,7 @@ name = "opaque-ke"
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/facebook/opaque-ke"
|
repository = "https://github.com/facebook/opaque-ke"
|
||||||
rust-version = "1.85"
|
rust-version = "1.85"
|
||||||
version = "4.0.0"
|
version = "4.0.1"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
argon2 = ["dep:argon2"]
|
argon2 = ["dep:argon2"]
|
||||||
|
|||||||
+1
-1
@@ -1318,7 +1318,7 @@
|
|||||||
//! [curve25519-dalek]: https://docs.rs/curve25519-dalek/4/curve25519_dalek/index.html#backends
|
//! [curve25519-dalek]: https://docs.rs/curve25519-dalek/4/curve25519_dalek/index.html#backends
|
||||||
|
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
||||||
#![cfg_attr(not(test), deny(unsafe_code))]
|
#![cfg_attr(not(test), deny(unsafe_code))]
|
||||||
#![warn(clippy::cargo, clippy::doc_markdown, missing_docs, rustdoc::all)]
|
#![warn(clippy::cargo, clippy::doc_markdown, missing_docs, rustdoc::all)]
|
||||||
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
|
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
|
||||||
|
|||||||
Reference in New Issue
Block a user