From 01f3421618729fb36397109fa0c3e82f83bae6aa Mon Sep 17 00:00:00 2001 From: ykerit Date: Tue, 30 Apr 2024 01:56:57 +0800 Subject: [PATCH 1/2] re-export parley && vello --- crates/masonry/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/masonry/src/lib.rs b/crates/masonry/src/lib.rs index 602abed77..977040669 100644 --- a/crates/masonry/src/lib.rs +++ b/crates/masonry/src/lib.rs @@ -91,6 +91,10 @@ #[doc(inline)] pub use kurbo; +#[doc(inline)] +pub use parley; +#[doc(inline)] +pub use vello; #[macro_use] mod util; From 7b33439cf169d25056cae3b7d1260210241c699e Mon Sep 17 00:00:00 2001 From: ykerit Date: Tue, 30 Apr 2024 22:38:29 +0800 Subject: [PATCH 2/2] remove docs attribute --- crates/masonry/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/masonry/src/lib.rs b/crates/masonry/src/lib.rs index 977040669..2e65adaac 100644 --- a/crates/masonry/src/lib.rs +++ b/crates/masonry/src/lib.rs @@ -89,11 +89,8 @@ // TODO - Add logo -#[doc(inline)] pub use kurbo; -#[doc(inline)] pub use parley; -#[doc(inline)] pub use vello; #[macro_use]