From 73badcc7f9eef2be8f0acec244e484c55a7812c8 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Sun, 31 Jul 2022 21:38:31 +0900 Subject: [PATCH] Fix default builds --- build.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.rs b/build.rs index 923299d..f393618 100644 --- a/build.rs +++ b/build.rs @@ -1,8 +1,8 @@ +#[cfg(feature = "unicode_support")] +use bindgen; use std::env; use std::path::PathBuf; -use bindgen; - #[cfg(not(feature = "unicode_support"))] fn main() {}