-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (34 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
35 lines (34 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "webtranscat"
version = "0.1.2"
edition = "2021"
description = "WebTransport equivalent of websocat - a command-line WebTransport client for debugging and testing"
authors = ["dario@securityunion.dev"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/security-union/webtranscat"
homepage = "https://github.com/security-union/webtranscat"
documentation = "https://docs.rs/webtranscat"
readme = "README.md"
keywords = ["webtransport", "quic", "debugging", "networking", "client"]
categories = ["command-line-utilities", "network-programming", "development-tools"]
exclude = [
"/.github/*",
"/docs/*",
"*.log",
"*.tmp"
]
[dependencies]
web-transport-quinn = "0.7.2"
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
url = "2"
futures = "0.3"
bytes = "1"
log = "0.4"
env_logger = "0.11"
anyhow = "1"
rustls = { version = "0.23", default-features = false, features = ["logging", "std", "aws-lc-rs"] }
quinn = "0.11"
rustls-native-certs = "0.8"
http = "1"
aws-lc-rs = "1"