-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (39 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "nm-proxy"
version = "0.2.0"
edition = "2021"
authors = ["Dennis Marttinen <[email protected]>"]
description = "Native messaging proxy for Flatpak'ed browsers"
repository = "https://github.com/twelho/nm-proxy"
license = "GPL-3.0-or-later"
keywords = ["browser", "flatpak", "native-messaging", "ipc"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "client"
path = "src/client/main.rs"
[[bin]]
name = "daemon"
path = "src/daemon/main.rs"
[[bin]]
name = "setup"
path = "src/setup/main.rs"
[profile.release]
lto = true # Enable link-time optimizations
strip = true # Strip symbols from the binary
[dependencies]
anyhow = "1.0.95"
byteorder = "1.5.0"
expanduser = "1.2.2"
libc = "0.2.169"
nix = { version = "0.29.0", features = ["signal"] }
rust-ini = "0.21.1"
sd-listen-fds = "0.2.0"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
tokio = { version = "1.43.0", features = ["full"] }
tokio-fd = "0.3.0"
tokio-util = "0.7.13"
toml = "0.8.19"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }