-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 935 Bytes
/
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
[package]
name = "mqtli"
version = "0.11.0"
edition = "2021"
description = "MQTT multi-topic and payload converting cli client"
license = "Apache-2.0"
repository = "https://github.com/kaans/mqtli"
readme = "README.adoc"
rust-version = "1.81.0"
[[bin]]
name = "mqtli"
path = "src/main.rs"
[dependencies]
mqtlib = { path = "crates/mqtlib" }
clap = { version = "4.5.26", features = ["derive", "env"] }
derive-getters = "0.5.0"
anyhow = "1.0.94"
log = "0.4.22"
tokio = { version = "1.42.0", features = ["macros", "rt", "rt-multi-thread", "sync", "signal"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_yaml = "0.9.30"
thiserror = "2.0.9"
validator = { version = "0.19.0", features = ["derive"] }
base64 = "0.22.1"
rumqttc = { git = "https://github.com/bytebeamio/rumqtt.git", rev = "431be1b", features = ["websocket"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
[build-dependencies]
built = "0.7.5"
[workspace]