diff options
Diffstat (limited to 'components/compositing/build.rs')
-rw-r--r-- | components/compositing/build.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/compositing/build.rs b/components/compositing/build.rs index 54532276222..c9b97801f51 100644 --- a/components/compositing/build.rs +++ b/components/compositing/build.rs @@ -2,12 +2,11 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -extern crate toml; - use std::env; use std::fs::File; use std::io::{Read, Write}; use std::path::Path; +use toml; fn main() { let lockfile_path = Path::new(&env::var("CARGO_MANIFEST_DIR").unwrap()) |