cloudflare-quick-tunnel 0.3.1

Pure-Rust client for Cloudflare quick tunnels (https://*.trycloudflare.com) — no cloudflared subprocess. Speaks QUIC + capnp-RPC to the argotunnel edge directly. HTTP/1.1 + WebSocket Upgrade, HA pool, TCP keep-alive.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.86"
name = "cloudflare-quick-tunnel"
version = "0.3.1"
build = false
include = [
    "src/**/*",
    "schemas/**/*",
    "cf-edge-roots.pem",
    "README.md",
    "CHANGELOG.md",
    "THIRD_PARTY_NOTICES.md",
    "LICENSE-MIT",
    "LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust client for Cloudflare quick tunnels (https://*.trycloudflare.com) — no cloudflared subprocess. Speaks QUIC + capnp-RPC to the argotunnel edge directly. HTTP/1.1 + WebSocket Upgrade, HA pool, TCP keep-alive."
homepage = "https://github.com/lordmacu/cloudflare-quick-tunnel-rs"
readme = "README.md"
keywords = [
    "cloudflare",
    "tunnel",
    "quic",
    "trycloudflare",
    "argotunnel",
]
categories = ["network-programming"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lordmacu/cloudflare-quick-tunnel-rs"

[lib]
name = "cloudflare_quick_tunnel"
path = "src/lib.rs"

[dependencies.anyhow]
version = "1"

[dependencies.base64]
version = "0.22"

[dependencies.bytes]
version = "1"

[dependencies.capnp]
version = "0.20"

[dependencies.capnp-futures]
version = "0.20"

[dependencies.capnp-rpc]
version = "0.20"

[dependencies.futures]
version = "0.3"

[dependencies.hickory-resolver]
version = "0.24"
features = [
    "dns-over-rustls",
    "tokio-runtime",
]
default-features = false

[dependencies.httparse]
version = "1"

[dependencies.quinn]
version = "0.11"
features = [
    "runtime-tokio",
    "rustls",
    "ring",
]
default-features = false

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "charset",
    "rustls-tls",
]
default-features = false

[dependencies.rustls]
version = "0.23"
features = [
    "std",
    "ring",
    "tls12",
    "logging",
]
default-features = false

[dependencies.rustls-native-certs]
version = "0.7"

[dependencies.rustls-pemfile]
version = "2"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
    "io-util",
    "net",
    "time",
    "sync",
]

[dependencies.tokio-util]
version = "0.7"
features = ["compat"]

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
version = "1"
features = [
    "v4",
    "serde",
]

[dev-dependencies.anyhow]
version = "1"

[dev-dependencies.tokio]
version = "1"
features = ["full"]

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dev-dependencies.wiremock]
version = "0.6"

[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"

[profile.release-fast]
lto = false
codegen-units = 16
inherits = "release"