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
|
2022-07-20 10:00:08 +00:00
|
|
|
bytes = "1.2"
|
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"] }
|
2022-10-20 07:52:33 +00:00
|
|
|
serde_json = "1.0.87"
|
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"
|
2022-09-21 05:20:55 +00:00
|
|
|
once_cell = { version = "1.15.0", features = ["parking_lot"] }
|
2022-02-01 11:50:42 +00:00
|
|
|
parking_lot = "0.12"
|
2022-09-06 14:13:28 +00:00
|
|
|
tokio = { version = "1.21", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
2021-03-25 19:22:51 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|