Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
penberg committed Nov 13, 2024
1 parent f29563d commit 08cb5eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libsql/src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ macro_rules! cfg_core {
macro_rules! cfg_replication_or_remote {
($($item:item)*) => {
$(
#[cfg(any(feature = "replication", feature = "remote"))]
#[cfg_attr(docsrs, doc(cfg(any(feature = "replication", feature = "remote"))))]
#[cfg(any(feature = "replication", feature = "sync", feature = "remote"))]
#[cfg_attr(docsrs, doc(cfg(any(feature = "replication", feature = "sync", feature = "remote"))))]
$item
)*
}
Expand Down

0 comments on commit 08cb5eb

Please sign in to comment.