2021-08-25 05:18:57 +00:00
|
|
|
[package]
|
|
|
|
name = "mqtt2db"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Brian J. Tarricone <brian@tarricone.org>"]
|
2022-06-08 22:36:08 +00:00
|
|
|
edition = "2021"
|
2021-08-25 05:18:57 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-06-08 22:36:08 +00:00
|
|
|
anyhow = "1"
|
2021-08-25 05:18:57 +00:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
env_logger = "0.9"
|
|
|
|
futures = "0.3"
|
2022-06-08 22:05:17 +00:00
|
|
|
influxdb = { version = "0.5", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
|
2021-08-31 06:41:02 +00:00
|
|
|
jsonpath = "0.1"
|
2021-08-25 05:18:57 +00:00
|
|
|
lazy_static = "1"
|
|
|
|
log = { version = "0.4", features = ["std", "serde"] }
|
|
|
|
regex = "1"
|
2022-06-08 22:05:17 +00:00
|
|
|
rumqttc = "0.12"
|
2021-08-25 05:18:57 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2021-08-30 21:46:11 +00:00
|
|
|
serde_json = "1"
|
2021-08-25 05:18:57 +00:00
|
|
|
serde_yaml = "0.8"
|
|
|
|
tokio = { version = "1", features = ["fs", "io-std", "io-util", "macros", "rt", "rt-multi-thread"] }
|