forked from driftluo/InfluxDBClient-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (28 loc) · 874 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "influx_db_client"
version = "0.4.4"
authors = ["piaoliu <441594700@qq.com>"]
documentation = "https://docs.rs/influx_db_client/"
repository = "https://github.com/driftluo/InfluxDBClient-rs"
description = "InfluxDB Rust driver"
readme = "README.md"
keywords = ["influxdb"]
categories = ["database"]
license = "MIT"
include = ["Cargo.toml", "src/*.rs", "README.md", "LICENSE"]
edition = "2018"
[badges]
travis-ci = { repository = "driftluo/InfluxDBClient-rs" }
[dependencies]
reqwest = { version = "^0.10", default-features = false, features = ["json"] }
serde_json = '^1.0.2'
serde = { version = "^1.0.15", features = ["derive"] }
bytes = "^0.5"
futures = "^0.3"
[dev-dependencies]
tempdir = "0.3"
tokio = "0.2"
[features]
default = ["reqwest/default-tls"]
# For using rustls-tls (and no need for openssl anymore)
rustls-tls = ["reqwest/rustls-tls"]