We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6e3991 commit 9ac86f9Copy full SHA for 9ac86f9
Cargo.toml
@@ -9,3 +9,7 @@ readme = "README.md"
9
license = "Apache-2.0"
10
categories = ["encoding", "text-processing"]
11
keywords = ["unicode", "symbols"]
12
+
13
+[features]
14
+default = ["styling"]
15
+styling = []
src/lib.rs
@@ -11,6 +11,9 @@ pub use self::shared::ModifierSet;
mod shared;
+#[cfg(feature = "styling")]
+pub mod styling;
16
17
/// A module of definitions.
18
#[derive(Debug, Copy, Clone)]
19
pub struct Module(&'static [(&'static str, Binding)]);
0 commit comments