tor-browser

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

Cargo.toml (607B)


      1 [package]
      2 edition = "2021"
      3 name = "mozrunner"
      4 version = "0.15.4"
      5 authors = ["Mozilla"]
      6 description = "Reliable Firefox process management."
      7 keywords = [
      8    "firefox",
      9    "mozilla",
     10    "process-manager",
     11 ]
     12 license = "MPL-2.0"
     13 repository = "https://hg.mozilla.org/mozilla-central/file/tip/testing/mozbase/rust/mozrunner"
     14 
     15 [dependencies]
     16 log = "0.4"
     17 mozprofile = { path = "../mozprofile", version = "0.9" }
     18 plist = "1.7"
     19 thiserror = "1"
     20 
     21 [target.'cfg(target_os = "windows")'.dependencies]
     22 winreg = "0.10.1"
     23 
     24 [target.'cfg(target_os = "macos")'.dependencies]
     25 dirs = "4"
     26 
     27 [[bin]]
     28 name = "firefox-default-path"