tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

lib.rs (798B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
      4 
      5 #![cfg(test)]
      6 #![feature(test)]
      7 
      8 extern crate app_units;
      9 extern crate cssparser;
     10 extern crate euclid;
     11 #[macro_use]
     12 extern crate html5ever;
     13 extern crate parking_lot;
     14 extern crate rayon;
     15 extern crate selectors;
     16 extern crate serde_json;
     17 extern crate servo_arc;
     18 extern crate servo_config;
     19 extern crate servo_url;
     20 extern crate stylo_atoms;
     21 #[macro_use]
     22 extern crate style;
     23 extern crate style_traits;
     24 extern crate test;
     25 
     26 mod animated_properties;
     27 mod attr;
     28 mod custom_properties;
     29 mod logical_geometry;
     30 mod parsing;
     31 mod properties;
     32 mod rule_tree;
     33 mod size_of;
     34 mod str;
     35 mod stylesheets;
     36 mod stylist;