19 lines
532 B
TOML
19 lines
532 B
TOML
[package]
|
|
name = "client_util"
|
|
description = "Shared code for IOx clients"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
http = "0.2.8"
|
|
reqwest = { version = "0.11", default-features = false, features = ["stream", "rustls-tls"] }
|
|
thiserror = "1.0.37"
|
|
tonic = { version = "0.8" }
|
|
tower = "0.4"
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.22", features = ["macros", "parking_lot", "rt-multi-thread"] }
|
|
mockito = "0.31" |