[package] name = "influxrs" description = "Provides data types for writing and reading data from InfluxDB 2.0" version = "3.0.1" authors = ["Isak Jägberg "] edition = "2018" license = "MIT" keywords = ["database", "influx", "timeseries", "client", "async"] categories = ["database"] repository = "https://github.com/ijagberg/influx" homepage = "https://github.com/ijagberg/influx" [dependencies] log = "0.4.8" serde = { version = "1.0.210", features = ["derive"] } csv = "1.3.0" isahc = { version = "1.7.2", optional = true } [features] client = ["dep:isahc"] static = ["client", "isahc/static-ssl", "isahc/static-curl"] [dev-dependencies] tokio = { version = "1.40.0", features = ["full"] } dotenv = "0.15.0" pretty_env_logger = "0.4.0" [[example]] name = "send_data" required-features = ["client"]