this repo has no description
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

🎨 Format code

authored by

gwennlbh and committed by
github-actions[bot]
16df68e1 7d44845c

+4 -2
+3 -1
src/lib.rs
··· 40 40 pub use rendering::{ 41 41 fonts, CSSRenderable, SVGAttributesRenderable, SVGRenderable, 42 42 }; 43 - pub use video::{animation, context, Animation, AttachHooks, Scene, Video, Timestamp}; 43 + pub use video::{ 44 + animation, context, Animation, AttachHooks, Scene, Timestamp, Video, 45 + }; 44 46 45 47 trait Toggleable { 46 48 fn toggle(&mut self);
+1 -1
src/video/mod.rs
··· 14 14 pub use animation::Animation; 15 15 pub use hooks::AttachHooks; 16 16 pub use scene::Scene; 17 - pub use video::Video; 18 17 pub use video::Timestamp; 18 + pub use video::Video;