16 lines
365 B
TOML
16 lines
365 B
TOML
|
[package]
|
||
|
name = "rtss_mqtt"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[dependencies]
|
||
|
rumqttc = { version = "0.24.0", features = ["url"] }
|
||
|
tokio = { workspace = true }
|
||
|
async-trait = { workspace = true }
|
||
|
bytes = { workspace = true }
|
||
|
lazy_static = { workspace = true }
|
||
|
thiserror = { workspace = true }
|
||
|
|
||
|
rtss_db = { path = "../rtss_db" }
|
||
|
rtss_log = { path = "../rtss_log" }
|