[package]
edition = "2021"
rust-version = "1.88"
name = "typeway-client"
version = "0.1.0"
authors = ["Josh Burgess"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-safe HTTP client for the typeway web framework"
homepage = "https://github.com/joshburgess/typeway"
documentation = "https://docs.rs/typeway"
readme = "README.md"
keywords = [
"web",
"framework",
"type-level",
"openapi",
"grpc",
]
categories = [
"web-programming",
"web-programming::http-server",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/joshburgess/typeway"
[lib]
name = "typeway_client"
path = "src/lib.rs"
[[test]]
name = "builder_tests"
path = "tests/builder_tests.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "interceptor_tests"
path = "tests/interceptor_tests.rs"
[[test]]
name = "methods_tests"
path = "tests/methods_tests.rs"
[[test]]
name = "query_tests"
path = "tests/query_tests.rs"
[[test]]
name = "retry_tests"
path = "tests/retry_tests.rs"
[dependencies.http]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"cookies",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_urlencoded]
version = "0.7"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.typeway-core]
version = "0.1.0"
[dependencies.url]
version = "2"
[dev-dependencies.bytes]
version = "1"
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.hyper]
version = "1"
features = ["full"]
[dev-dependencies.hyper-util]
version = "0.1"
features = ["tokio"]
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[lints.clippy]
upper_case_acronyms = "allow"