-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
41 lines (36 loc) · 1 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
[package]
name = "ruuvi2mqtt"
version = "1.3.4-dev"
authors = ["Teemu Matilainen <[email protected]>"]
license = "MIT"
homepage = "https://github.com/tmatilai/ruuvi2mqtt"
repository = "https://github.com/tmatilai/ruuvi2mqtt"
edition = "2021"
rust-version = "1.69"
[features]
default = ["vendored"]
vendored = ["dbus/vendored"]
[profile.release]
lto = true
strip = true
[dependencies]
anyhow = "1.0"
btleplug = "0.11.6"
clap = { version = "4.5.21", features = ["derive", "env", "wrap_help"] }
derive_more = { version = "1.0.0", features = ["debug"] }
env_logger = "0.11.3"
futures = "0.3.19"
log = "0.4.17"
rand = "0.8.4"
rumqttc = "0.24.0"
ruuvi-sensor-protocol = "0.6.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.133"
serde_with = "3.11.0"
serde_yaml = "0.9.14"
sysinfo = "0.33.0"
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"] }
[target.'cfg(target_os = "linux")'.dependencies]
dbus = { version = "0.9.7", optional = true }
[dev-dependencies]
trycmd = "0.15.8"