From 5a9085c9123ea018699709831a8939e5ada383ce Mon Sep 17 00:00:00 2001 From: Orual Date: Sat, 4 Oct 2025 00:26:28 -0400 Subject: [PATCH] couple little docs fixes --- crates/jacquard-common/src/lib.rs | 12 +++++------- crates/jacquard/src/lib.rs | 1 - 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/crates/jacquard-common/src/lib.rs b/crates/jacquard-common/src/lib.rs index 61945f73f..2a9d868cc 100644 --- a/crates/jacquard-common/src/lib.rs +++ b/crates/jacquard-common/src/lib.rs @@ -1,20 +1,18 @@ //! Common types for the jacquard implementation of atproto #![warn(missing_docs)] +pub use cowstr::CowStr; +pub use into_static::IntoStatic; +pub use smol_str; +pub use url; /// A copy-on-write immutable string type that uses [`SmolStr`] for /// the "owned" variant. #[macro_use] pub mod cowstr; #[macro_use] -/// trait for taking ownership of most borrowed types in jacquard. +/// Trait for taking ownership of most borrowed types in jacquard. pub mod into_static; -/// Helper macros for common patterns pub mod macros; /// Baseline fundamental AT Protocol data types. pub mod types; - -pub use cowstr::CowStr; -pub use into_static::IntoStatic; -pub use smol_str; -pub use url; diff --git a/crates/jacquard/src/lib.rs b/crates/jacquard/src/lib.rs index 87c97d7e5..40fe3f718 100644 --- a/crates/jacquard/src/lib.rs +++ b/crates/jacquard/src/lib.rs @@ -95,7 +95,6 @@ pub mod client; #[cfg(feature = "api")] /// If enabled, re-export the generated api crate pub use jacquard_api as api; -/// Re-export common types pub use jacquard_common::*; #[cfg(feature = "derive")] -- 2.51.2