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
2 changes: 1 addition & 1 deletion Cargo.lock

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

3 changes: 3 additions & 0 deletions crates/socketioxide-mongodb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion crates/socketioxide-mongodb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/socketioxide-mongodb/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
Loading