2020-07-15 19:10:43 +00:00
|
|
|
[package]
|
|
|
|
name = "influxdb2_client"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2020-07-15 19:10:43 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2023-02-01 00:30:56 +00:00
|
|
|
bytes = "1.4"
|
2021-04-13 12:14:54 +00:00
|
|
|
futures = { version = "0.3", default-features = false }
|
2022-03-03 11:04:11 +00:00
|
|
|
reqwest = { version = "0.11", default-features = false, features = ["stream", "json", "rustls-tls"] }
|
2020-08-12 13:09:39 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-02-09 10:39:33 +00:00
|
|
|
serde_json = "1.0.93"
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2022-09-09 11:34:48 +00:00
|
|
|
url = "2.3.1"
|
2022-06-17 10:28:28 +00:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2020-07-27 18:10:54 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2022-02-28 10:05:24 +00:00
|
|
|
mockito = "0.31"
|
2023-01-02 17:07:15 +00:00
|
|
|
once_cell = { version = "1.17", features = ["parking_lot"] }
|
2022-02-01 11:50:42 +00:00
|
|
|
parking_lot = "0.12"
|
2023-01-30 01:57:27 +00:00
|
|
|
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
2021-03-25 19:22:51 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|