2020-07-15 19:10:43 +00:00
|
|
|
[package]
|
|
|
|
name = "influxdb2_client"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Dix <paul@pauldix.net>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
|
|
|
bytes = { version = "1.0", default-features = false }
|
2021-04-13 12:14:54 +00:00
|
|
|
futures = { version = "0.3", default-features = false }
|
2021-03-13 16:15:15 +00:00
|
|
|
reqwest = { version = "0.11", features = ["stream", "json"] }
|
2020-08-12 13:09:39 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0.44"
|
2020-07-15 20:06:55 +00:00
|
|
|
snafu = "0.6.6"
|
2021-03-30 15:24:31 +00:00
|
|
|
url = "2.1.1"
|
2020-07-27 18:10:54 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2020-07-27 18:10:54 +00:00
|
|
|
mockito = "0.26.0"
|
2021-03-25 19:22:51 +00:00
|
|
|
once_cell = { version = "1.4.0", features = ["parking_lot"] }
|
|
|
|
parking_lot = "0.11.1"
|
2021-02-08 21:43:27 +00:00
|
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
2021-03-25 19:22:51 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|