2020-07-15 19:10:43 +00:00
|
|
|
[package]
|
|
|
|
name = "influxdb2_client"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Dix <paul@pauldix.net>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2020-07-15 19:10:43 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2021-09-20 09:07:12 +00:00
|
|
|
bytes = "1.0"
|
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"] }
|
2021-08-30 11:28:35 +00:00
|
|
|
serde_json = "1.0.67"
|
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
|
2021-07-13 13:17:28 +00:00
|
|
|
mockito = "0.30"
|
2021-03-25 19:22:51 +00:00
|
|
|
once_cell = { version = "1.4.0", features = ["parking_lot"] }
|
2021-09-06 01:18:24 +00:00
|
|
|
parking_lot = "0.11.2"
|
2021-11-01 11:21:59 +00:00
|
|
|
tokio = { version = "1.13", features = ["macros", "rt-multi-thread"] }
|
2021-03-25 19:22:51 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|