From df312db3c428e7e8936c5ad6846629236bcb6240 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 23 Nov 2019 13:17:55 -0500 Subject: make unicode normalization optional it's not always necessary or desired, and adds quite a lot to the binary size (for instance, the problem it solves is pretty much non-existent in web browsers, and wasm builds are also very sensitive to code size) --- tests/text.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'tests') diff --git a/tests/text.rs b/tests/text.rs index 81201a1..1ad16ae 100644 --- a/tests/text.rs +++ b/tests/text.rs @@ -130,6 +130,7 @@ fn wide() { ); } +#[cfg(feature = "unicode-normalization")] #[test] fn combining() { let mut parser = vt100::Parser::default(); -- cgit v1.2.3-54-g00ecf