wstunnel/Cargo.toml
Σrebe - Romain GERARD f3b01dc9c8 Bump
Former-commit-id: e733111c91cb1e97a1a83e871e276abf8932e06f [formerly afdfb957095a1f4ec857225f67587fd59dc6b43a] [formerly 7f15f69bb27f8b778ce81b9ca983c2260480382d [formerly 1fd1288cb05c3e5e26f374ce9b7873f990d65b01]]
Former-commit-id: 9b3a9ea64d414fa9ea0a283293d805dc5a0f90c8 [formerly e7dae3aae96e9718868af5dc5213269ccd198c9c]
Former-commit-id: 07f4549c8f0b2e8fa5f93ac1089886932c5f4c49
Former-commit-id: 7b14a2155035f3a40dbb62c2056091ad35cfefe1
Former-commit-id: 7b055e4fde439c962e52f255f4d186db2baa7b7c
Former-commit-id: 40d5e9dde7c8ada4940d49ac367173c41f47c562 [formerly b8e58804e55e540f574707e9b762e45b91266c88]
Former-commit-id: 1775c08d28d9d5f63bad987bf022d56f18f92253
2023-10-18 17:05:02 +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 = ["armv7-unknown-linux-musleabihf", "x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc"]
# Publish jobs to run in CI
pr-run-mode = "skip"