2021-08-26 10:30:59 +00:00
|
|
|
[package]
|
|
|
|
name = "client_util"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Raphael Taylor-Davies <r.taylordavies@googlemail.com>"]
|
|
|
|
description = "Shared code for IOx clients"
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-08-26 10:30:59 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-06-07 13:35:01 +00:00
|
|
|
http = "0.2.8"
|
2022-09-29 11:12:51 +00:00
|
|
|
reqwest = { version = "0.11", default-features = false, features = ["stream", "rustls-tls"] }
|
2022-09-29 10:37:14 +00:00
|
|
|
thiserror = "1.0.37"
|
2022-08-09 17:30:44 +00:00
|
|
|
tonic = { version = "0.8" }
|
2021-08-26 10:30:59 +00:00
|
|
|
tower = "0.4"
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2021-08-26 10:30:59 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-09-06 14:13:28 +00:00
|
|
|
tokio = { version = "1.21", features = ["macros", "parking_lot", "rt-multi-thread"] }
|
2022-09-29 11:12:51 +00:00
|
|
|
mockito = "0.31"
|