[package] name = "rinfluxdb-flux" version = "0.2.0" repository = "https://gitlab.com/claudiomattera/rinfluxdb" authors = ["Claudio Mattera "] description = "A library for querying and posting data to InfluxDB" edition = "2018" license = "MIT OR Apache-2.0" readme = "../Readme.md" exclude = [ ".drone.yml", ] keywords = [ "influxdb", "timeseries", ] categories = [ "database", ] [lib] name = "rinfluxdb_flux" path = "src/lib.rs" [[example]] name = "fetchreadingsflux" required-features = ["client"] [features] default = ["client"] client = ["reqwest", "url"] [dependencies] thiserror = "1.0" tracing = "0.1" chrono = "0.4" csv = "1.1" itertools = "0.10" reqwest = { version = "0.11", features = ["blocking"], optional = true } url = { version = "2", features = ["serde"], optional = true } rinfluxdb-types = { version = "=0.2.0", path = "../rinfluxdb-types" } [dev-dependencies] rinfluxdb-dataframe = { version = "=0.2.0", path = "../rinfluxdb-dataframe" } reqwest = { version = "0.11", features = ["blocking"] } structopt = "0.3" tracing-subscriber = { version = "0.2", features = ["registry", "env-filter"] } tracing-log = "0.1"