From 61fe0bd58c6ef3d301726ecab20a1fcb85a0c216 Mon Sep 17 00:00:00 2001 From: totodore Date: Sun, 12 Apr 2026 14:49:46 +0200 Subject: [PATCH 1/2] fix(adapter/mongodb): rustdoc failed to build --- crates/socketioxide-mongodb/CHANGELOG.md | 3 +++ crates/socketioxide-mongodb/Cargo.toml | 2 +- crates/socketioxide-mongodb/src/lib.rs | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/crates/socketioxide-mongodb/CHANGELOG.md b/crates/socketioxide-mongodb/CHANGELOG.md index 54a0ffe5..362dbbc7 100644 --- a/crates/socketioxide-mongodb/CHANGELOG.md +++ b/crates/socketioxide-mongodb/CHANGELOG.md @@ -1,3 +1,6 @@ +# socketioxide-mongodb 0.1.3 +* fix: rustdoc failed build + # socketioxide-mongodb 0.1.2 * fix: race condition between ack timeout and adapter request timeout when broadcasting with acks. diff --git a/crates/socketioxide-mongodb/Cargo.toml b/crates/socketioxide-mongodb/Cargo.toml index ef90e29c..5546c5f1 100644 --- a/crates/socketioxide-mongodb/Cargo.toml +++ b/crates/socketioxide-mongodb/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "socketioxide-mongodb" description = "MongoDB adapter for socketioxide" -version = "0.1.2" +version = "0.1.3" edition.workspace = true rust-version.workspace = true authors.workspace = true diff --git a/crates/socketioxide-mongodb/src/lib.rs b/crates/socketioxide-mongodb/src/lib.rs index da9ae0ca..d68a38f1 100644 --- a/crates/socketioxide-mongodb/src/lib.rs +++ b/crates/socketioxide-mongodb/src/lib.rs @@ -1,5 +1,5 @@ #![warn(missing_docs)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] //! # A mongodb adapter implementation for the socketioxide crate. //! The adapter is used to communicate with other nodes of the same application. //! This allows to broadcast messages to sockets connected on other servers, From fbd580212be61de370da128e09271dcd21ccd972 Mon Sep 17 00:00:00 2001 From: totodore Date: Sun, 12 Apr 2026 14:50:22 +0200 Subject: [PATCH 2/2] fix(adapter/mongodb): rustdoc failed to build --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 1f8d68da..1328bf93 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2385,7 +2385,7 @@ dependencies = [ [[package]] name = "socketioxide-mongodb" -version = "0.1.2" +version = "0.1.3" dependencies = [ "bson 3.1.0", "bytes",