+5
-7
crates/jacquard-common/src/lib.rs
+5
-7
crates/jacquard-common/src/lib.rs
···
1
1
//! Common types for the jacquard implementation of atproto
2
2
3
3
#![warn(missing_docs)]
4
+
pub use cowstr::CowStr;
5
+
pub use into_static::IntoStatic;
6
+
pub use smol_str;
7
+
pub use url;
4
8
5
9
/// A copy-on-write immutable string type that uses [`SmolStr`] for
6
10
/// the "owned" variant.
7
11
#[macro_use]
8
12
pub mod cowstr;
9
13
#[macro_use]
10
-
/// trait for taking ownership of most borrowed types in jacquard.
14
+
/// Trait for taking ownership of most borrowed types in jacquard.
11
15
pub mod into_static;
12
-
/// Helper macros for common patterns
13
16
pub mod macros;
14
17
/// Baseline fundamental AT Protocol data types.
15
18
pub mod types;
16
-
17
-
pub use cowstr::CowStr;
18
-
pub use into_static::IntoStatic;
19
-
pub use smol_str;
20
-
pub use url;