Skip to content

Commit

Permalink
Disable experimental #[doc(cfg)] attributes, for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
artob committed Aug 19, 2024
1 parent 9e2022e commit 936145b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/protoflow/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ pub use protoflow_core::*;
/// Default blocks are available if the crate was built with a
/// `features = ["blocks"]` configuration.
#[cfg(feature = "blocks")]
#[cfg_attr(docsrs, doc(cfg(feature = "blocks")))]
//#[cfg_attr(docsrs, doc(cfg(feature = "blocks")))]
pub use protoflow_blocks as blocks;

/// Derive macros are available if the crate was built with a
/// `features = ["derive"]` configuration.
#[cfg(feature = "derive")]
#[cfg_attr(docsrs, doc(cfg(feature = "derive")))]
//#[cfg_attr(docsrs, doc(cfg(feature = "derive")))]
pub use protoflow_derive as derive;

mod feature;
Expand All @@ -28,7 +28,7 @@ pub use feature::*;
/// The parser is available if the crate was built with a
/// `features = ["syntax"]` configuration.
#[cfg(feature = "syntax")]
#[cfg_attr(docsrs, doc(cfg(feature = "syntax")))]
//#[cfg_attr(docsrs, doc(cfg(feature = "syntax")))]
pub use protoflow_syntax as syntax;

#[doc = include_str!("../../../README.md")]
Expand Down

0 comments on commit 936145b

Please sign in to comment.