From ddbecf288240dd8ad2568df57415fed8fa3e25a8 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 8 Sep 2014 14:52:14 -0400 Subject: [PATCH] use rust-encoding to correctly(?) set utf16 strings for cmdline args as expected --- ports/cef/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ports/cef/lib.rs b/ports/cef/lib.rs index bf7aeec80e6..00c952c005d 100644 --- a/ports/cef/lib.rs +++ b/ports/cef/lib.rs @@ -37,6 +37,8 @@ extern crate native; extern crate libc; extern crate "url" as std_url; +extern crate encoding; + #[cfg(target_os="macos")] extern crate core_graphics; #[cfg(target_os="macos")]