2021-08-26 10:30:59 +00:00
|
|
|
[package]
|
|
|
|
name = "client_util"
|
|
|
|
description = "Shared code for IOx clients"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-08-26 10:30:59 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-20 02:54:56 +00:00
|
|
|
http = "0.2.9"
|
2022-09-29 11:12:51 +00:00
|
|
|
reqwest = { version = "0.11", default-features = false, features = ["stream", "rustls-tls"] }
|
2023-07-24 10:18:44 +00:00
|
|
|
thiserror = "1.0.44"
|
2023-04-12 16:07:19 +00:00
|
|
|
tonic = { workspace = true }
|
2021-08-26 10:30:59 +00:00
|
|
|
tower = "0.4"
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
2021-08-26 10:30:59 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-06-28 13:18:08 +00:00
|
|
|
tokio = { version = "1.29", features = ["macros", "parking_lot", "rt-multi-thread"] }
|
2023-06-20 08:44:52 +00:00
|
|
|
mockito = { version = "1.1", default-features = false }
|