[package]
name = "wtcat"
version = "0.1.3"
edition = "2021"
authors = ["pvr"]
license = "MIT"
description = "WebTransport CLI client for testing - like wscat for WebSocket"
repository = "https://github.com/pervrosen/wtcat"
homepage = "https://github.com/pervrosen/wtcat"
documentation = "https://docs.rs/wtcat"
readme = "README.md"
keywords = ["webtransport", "http3", "quic", "cli", "testing"]
categories = ["command-line-utilities", "network-programming", "development-tools"]
[dependencies]
tokio = { version = "1.0", features = ["full"] }
quinn = "0.11"
rustls = { version = "0.23", features = ["ring"] }
clap = { version = "4.5", features = ["derive"] }
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[package.metadata.docs.rs]
all-features = false
features = ["std"]