aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2021-04-08 10:25:09 +0200
committerMartin Fischer <martin@push-f.com>2021-04-08 15:40:48 +0200
commit8bb20dcdeec57b2109b05351663ec1dba9c65f84 (patch)
tree3ddf7196d2fe66d92e4819c362e248cb96be3c0b /src/lib.rs
parentfc9d3132f390b038544e45048b4fe345a3d47793 (diff)
drop markup5ever dependency
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 95647ff..88934f0 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -12,7 +12,6 @@
#![cfg_attr(test, deny(warnings))]
#![allow(unused_parens)]
-pub use markup5ever;
pub use tendril;
#[macro_use]
@@ -20,17 +19,6 @@ mod macros;
/// Create a [`SmallCharSet`], with each space-separated number stored in the set.
///
-/// # Examples
-///
-/// ```
-/// # #[macro_use] extern crate markup5ever;
-/// # fn main() {
-/// let set = small_char_set!(12 54 42);
-/// assert_eq!(set.bits,
-/// 0b00000000_01000000_00000100_00000000_00000000_00000000_00010000_00000000);
-/// # }
-/// ```
-///
/// [`SmallCharSet`]: struct.SmallCharSet.html
#[macro_export]
macro_rules! small_char_set ( ($($e:expr)+) => (