19 lines
581 B
TOML
19 lines
581 B
TOML
[package]
|
|
name = "nmhproxy"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
description = "A lightweight native messaging listener executable for the IceCat Bridge extension which launches IceCat in regular or private modes, avoiding the need to convert IceCat itself into a listener."
|
|
|
|
[[bin]]
|
|
name = "nmhproxy"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
dirs = "4"
|
|
mozbuild = "0.1"
|
|
mozilla-central-workspace-hack = { version = "0.1", features = ["nmhproxy"], optional = true }
|
|
serde = { version = "1", features = ["derive", "rc"] }
|
|
serde_json = "1.0"
|
|
tempfile = "3"
|
|
url = "2.4"
|