mozrunner/
lib.rs

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]
7extern crate log;
8#[cfg(target_os = "macos")]
9extern crate dirs;
10extern crate mozprofile;
11#[cfg(target_os = "macos")]
12extern crate plist;
13#[cfg(target_os = "windows")]
14extern crate winreg;
15
16pub mod firefox_args;
17pub mod path;
18pub mod runner;
19
20pub use crate::runner::platform::firefox_default_path;