Libera la versión de desarrollo 0.0.12

This commit is contained in:
Manuel Cillero 2022-05-07 23:25:54 +02:00
parent 68a347382d
commit 5e8a1f75fd
4 changed files with 8 additions and 20 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "pagetop"
version = "0.0.11"
version = "0.0.12"
edition = "2021"
authors = [

View file

@ -6,17 +6,9 @@ pub use definition::{
};
mod holder;
pub use holder::{
ActionItem,
};
use holder::{
ActionsHolder,
};
pub use holder::ActionItem;
use holder::ActionsHolder;
mod all;
pub use all::{
run_actions,
};
pub(crate) use all::{
add_action,
};
pub use all::run_actions;
pub(crate) use all::add_action;

View file

@ -19,14 +19,10 @@ pub use definition::{
component_ref,
component_mut,
};
use definition::{
render_component,
};
use definition::render_component;
mod holder;
pub use holder::{
ComponentsHolder,
};
pub use holder::ComponentsHolder;
mod all;
pub use all::{

View file

@ -1,8 +1,8 @@
// External.
pub use once_cell::sync::Lazy;
pub use concat_string::concat_string;
pub use doc_comment::doc_comment;
pub use once_cell::sync::Lazy;
// Local.