blob: 00beaee04079174cc131c9a7257424506d33f59c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[package]
name = "mozrunner"
version = "0.12.1"
authors = ["Mozilla"]
description = "Reliable Firefox process management."
repository = "https://hg.mozilla.org/mozilla-central/file/tip/testing/mozbase/rust/mozrunner"
license = "MPL-2.0"
edition = "2018"
[dependencies]
log = "0.4"
mozprofile = { path = "../mozprofile", version = "0.7" }
plist = "0.5"
[target.'cfg(target_os = "windows")'.dependencies]
winreg = "0.5"
[target.'cfg(target_os = "macos")'.dependencies]
dirs = "2"
[[bin]]
name = "firefox-default-path"
|