aboutsummaryrefslogtreecommitdiffstats
path: root/components/shared/base/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/shared/base/lib.rs')
-rw-r--r--components/shared/base/lib.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/components/shared/base/lib.rs b/components/shared/base/lib.rs
index e084f142112..062ece48e21 100644
--- a/components/shared/base/lib.rs
+++ b/components/shared/base/lib.rs
@@ -9,11 +9,13 @@
//! You should almost never need to add a data type to this crate. Instead look for
//! a more shared crate that has fewer dependents.
-use serde::{Deserialize, Serialize};
-
pub mod generic_channel;
pub mod id;
pub mod print_tree;
+pub mod text;
+mod unicode_block;
+
+use serde::{Deserialize, Serialize};
use webrender_api::Epoch as WebRenderEpoch;
/// A struct for denoting the age of messages; prevents race conditions.