mqtt2db/Cargo.toml
Brian J. Tarricone 7940d168fe Add tokio-compat-02 for influxdb client
The HTTP client the influxdb client uses is still on tokio 0.2.
2021-08-29 00:55:48 -07:00

21 lines
581 B
TOML

[package]
name = "mqtt2db"
version = "0.1.0"
authors = ["Brian J. Tarricone <brian@tarricone.org>"]
edition = "2018"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
clap = "2.33"
env_logger = "0.9"
futures = "0.3"
influxdb = { version = "0.4", features = ["derive"] }
lazy_static = "1"
log = { version = "0.4", features = ["std", "serde"] }
regex = "1"
rumqttc = "0.8"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.8"
tokio = { version = "1", features = ["fs", "io-std", "io-util", "macros", "rt", "rt-multi-thread"] }
tokio-compat-02 = "0.2"