Cargo.toml (584B)
1 [package] 2 name = "nmhproxy" 3 version = "0.1.0" 4 edition = "2021" 5 license = "MPL-2.0" 6 description = "A lightweight native messaging listener executable for the Firefox Bridge extension which launches Firefox in regular or private modes, avoiding the need to convert Firefox itself into a listener." 7 8 [[bin]] 9 name = "nmhproxy" 10 path = "src/main.rs" 11 12 [dependencies] 13 dirs = "4" 14 mozbuild = "0.1" 15 mozilla-central-workspace-hack = { version = "0.1", features = ["nmhproxy"], optional = true } 16 serde = { version = "1", features = ["derive", "rc"] } 17 serde_json = "1.0" 18 tempfile = "3" 19 url = "2.4"