wstunnel/Cargo.toml
Σrebe - Romain GERARD 1c4205ff39 Bump
Former-commit-id: a5a49e06e09b42d520f5f3793c9782210d81b4ab [formerly 3e5c590e70a3b747c6581372092a8812d8971cd1] [formerly ca95cc6e5d63dd8baa272a9111e891d8526ee8fe [formerly 5a558dd707eaef496918f905d3aa501df37fd1c7]]
Former-commit-id: c93e7f00e96ab2e3e232901d109ef8cf6b898cfd [formerly 8c9cb567a501d849dafc0b012cfc36378f451f47]
Former-commit-id: 753e3d6a077a2cc74a40dd6186c620a08d5d4321
Former-commit-id: 0303d924e30f6e16fda637da2c5445d47e4a0962
Former-commit-id: 640e30c5649bc2261ae21ad7109771dd2acce9f9
Former-commit-id: 0f7609ca7298285cc77ed7c2bb04bf7e3b3557eb [formerly 862eaf5638a40a630d3b0fa358fb53f601615777]
Former-commit-id: c0c9c406290f32a31665c4fdb960c9cff2d3c537
2023-10-18 16:59:20 +02:00

65 lines
2.2 KiB
TOML

[package]
name = "wstunnel"
version = "0.0.5"
edition = "2021"
repository = "https://github.com/erebe/wstunnel.git"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.4.5", features = ["derive"]}
url = "2.4.1"
anyhow = "1.0.75"
hyper = { version = "0.14.27", features = ["client", "runtime"] }
#fastwebsockets = { version = "0.4.4", features = ["upgrade"]}
fastwebsockets = { git = "https://github.com/mmastrac/fastwebsockets", branch = "split", features = ["upgrade", "simd"]}
libc = { version = "0.2.148", features = []}
once_cell = { version = "1.18.0", features = [] }
ahash = { version = "0.8.3", features = []}
pin-project = "1"
scopeguard = "1.2.0"
uuid = { version = "1.4.1", features = ["v7", "serde"] }
jsonwebtoken = { version = "9.0.0", default-features = false }
rustls-pemfile = { version = "1.0.3", features = [] }
rustls-native-certs = { version = "0.6.3", features = [] }
tokio = { version = "1.32.0", features = ["full"] }
tokio-rustls = { version = "0.24.1", features = ["tls12", "dangerous_configuration", "early-data"] }
tokio-stream = { version = "0.1.14", features = ["net"] }
fast-socks5 = { version = "0.9.1", features = [] }
futures-util = { version = "0.3.28" }
tracing = { version = "0.1.37", features = ["log"] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "fmt", "local-time"] }
base64 = "0.21.4"
serde = { version = "1.0.188", features = ["derive"] }
log = "0.4.20"
[target.'cfg(target_family = "unix")'.dependencies]
tokio-fd = "0.3.0"
[profile.release]
lto = "fat"
panic = "abort"
codegen-units = 1
opt-level = 3
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.3.1"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-pc-windows-msvc"]
# Publish jobs to run in CI
pr-run-mode = "skip"