tor-browser

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

lib.rs (541B)


      1 #![forbid(unsafe_code)]
      2 /* This Source Code Form is subject to the terms of the Mozilla Public
      3 * License, v. 2.0. If a copy of the MPL was not distributed with this
      4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      5 
      6 #[macro_use]
      7 extern crate log;
      8 #[cfg(target_os = "macos")]
      9 extern crate dirs;
     10 extern crate mozprofile;
     11 #[cfg(target_os = "macos")]
     12 extern crate plist;
     13 #[cfg(target_os = "windows")]
     14 extern crate winreg;
     15 
     16 pub mod firefox_args;
     17 pub mod path;
     18 pub mod runner;
     19 
     20 pub use crate::runner::platform::firefox_default_path;