rust-proxy 0.1.0

A simple HTTP/HTTPS proxy server written in Rust
# 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 = "2024"
name = "rust-proxy"
version = "0.1.0"
authors = ["tan <c3qu@qq.com>"]
build = false
include = [
    "src/**/*",
    "Cargo.toml",
    "README.md",
    "LICENSE*",
    "CHANGELOG.md",
    "examples/**/*",
    "config.example.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple HTTP/HTTPS proxy server written in Rust"
homepage = "https://github.com/yourusername/rust-proxy"
readme = "README.md"
keywords = [
    "proxy",
    "http",
    "https",
    "server",
    "network",
]
categories = [
    "network-programming",
    "web-programming::http-server",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yourusername/rust-proxy"

[[bin]]
name = "https_proxy"
path = "src/https_proxy.rs"

[[bin]]
name = "rust-proxy"
path = "src/main.rs"

[[bin]]
name = "simple_proxy"
path = "src/simple_proxy.rs"

[[example]]
name = "https_demo"
path = "examples/https_demo.rs"

[[example]]
name = "test_client"
path = "examples/test_client.rs"

[dependencies.clap]
version = "4.0"
features = ["derive"]

[dependencies.http]
version = "1.0"

[dependencies.hyper]
version = "1.0"

[dependencies.hyper-util]
version = "0.1"
features = ["full"]

[dependencies.pem]
version = "3.0"

[dependencies.rcgen]
version = "0.13"

[dependencies.rustls]
version = "0.23"

[dependencies.tokio]
version = "1.0"
features = ["full"]

[dependencies.tokio-rustls]
version = "0.26"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"

[dependencies.webpki]
version = "0.22"

[dependencies.webpki-roots]
version = "0.26"