A better Rust ATProto crate

couple little docs fixes

Orual 5a9085c9 7998de31

Changed files
+5 -8
crates
jacquard
src
jacquard-common
src
+5 -7
crates/jacquard-common/src/lib.rs
···
//! 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;
-1
crates/jacquard/src/lib.rs
···
#[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")]