-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·38 lines (36 loc) · 900 Bytes
/
Cargo.toml
File metadata and controls
executable file
·38 lines (36 loc) · 900 Bytes
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
[package]
name = "bzmenu"
version = "0.4.0"
edition = "2018"
description = "Launcher-driven Bluetooth manager for Linux"
authors = ["e-tho"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/e-tho/bzmenu"
repository = "https://github.com/e-tho/bzmenu"
[dependencies]
bluer = { version = "0.17", features = ["bluetoothd"] }
anyhow = "1.0"
tokio = { version = "1", features = [
"rt-multi-thread",
"macros",
"sync",
"time",
] }
futures-util = { version = "0.3", default-features = false, features = [
"alloc",
] }
log = "0.4"
env_logger = "0.11"
clap = { version = "4", features = ["derive"] }
nix = { version = "0.31", features = ["process", "signal"] }
libc = "0.2"
process-wrap = { version = "9", features = ["std"] }
signal-hook = "0.4"
notify-rust = "4"
shlex = "1.3"
rust-i18n = "3"
sys-locale = "0.3"
[profile.release]
strip = true
lto = true