1 // Copyright 2013-2015 The Servo Project Developers. See the COPYRIGHT 2 // file at the top-level directory of this distribution. 3 // 4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or 5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license 6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your 7 // option. This file may not be copied, modified, or distributed 8 // except according to those terms. 9 #![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, improper_ctypes)] 10 11 #![cfg_attr(all(feature="mac_os_10_7_support", feature="mac_os_10_8_features"), feature(linkage))] // back-compat requires weak linkage 12 13 pub mod array; 14 pub mod attributed_string; 15 pub mod base; 16 pub mod bundle; 17 pub mod data; 18 pub mod date; 19 pub mod dictionary; 20 pub mod error; 21 pub mod filedescriptor; 22 pub mod messageport; 23 pub mod number; 24 pub mod propertylist; 25 pub mod runloop; 26 pub mod set; 27 pub mod string; 28 pub mod timezone; 29 pub mod url; 30 pub mod uuid; 31