Skip to content

Commit c1d081b

Browse files
committed
Fix displaydoc derive
1 parent 1bbbd92 commit c1d081b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

bluer-tools/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bluer-tools"
3-
version = "0.16.0-pre1"
3+
version = "0.16.0-pre3"
44
description = "BlueR tools: swiss army knife for GATT services, L2CAP and RFCOMM sockets on Linux"
55
readme = "README.md"
66
authors = ["Sebastian Urban <[email protected]>", "BlueR contributors"]
@@ -27,7 +27,7 @@ name = "rfcat"
2727
path = "src/rfcat.rs"
2828

2929
[dependencies]
30-
bluer = { version = "0.16.0-pre1", path = "../bluer", features = ["full"] }
30+
bluer = { version = "0.16.0-pre2", path = "../bluer", features = ["full"] }
3131
futures = "0.3"
3232
tokio = { version = "1", features = [
3333
"io-std",

bluer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bluer"
3-
version = "0.16.0-pre1"
3+
version = "0.16.0-pre3"
44
description = "BlueR: official Rust interface to the Linux Bluetooth protocol stack (BlueZ)"
55
readme = "README.md"
66
authors = [

bluer/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -576,6 +576,7 @@ pub struct Error {
576576
#[cfg_attr(docsrs, doc(cfg(feature = "bluetoothd")))]
577577
#[derive(Clone, Debug, displaydoc::Display, Eq, PartialEq, Ord, PartialOrd, Hash, EnumString)]
578578
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
579+
#[ignore_extra_doc_attributes]
579580
#[non_exhaustive]
580581
pub enum ErrorKind {
581582
/// Bluetooth device already connected

0 commit comments

Comments
 (0)