Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
135 changes: 134 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ required-features = ["ui"]
[features]
default = []
ui = ["dep:eframe"]
# Opt-in: BoringSSL needs CMake + clang at build time, awkward for
# musl-static / mipsel-softfloat / Win7-i686 release targets. When on,
# `tls_fingerprint: "chrome"` in config.json selects a Chrome-shaped
# ClientHello. Roadmap item #369 §2.
utls = ["dep:rama-boring", "dep:rama-boring-tokio"]

[dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "time", "io-util", "signal", "sync"] }
Expand Down Expand Up @@ -58,6 +63,11 @@ futures-util = { version = "0.3", default-features = false, features = ["std"] }
# down to the native instructions with no overhead.
portable-atomic = { version = "1", features = ["fallback"] }

# BoringSSL connector for the `utls` feature — drop-in at the
# tokio_rustls::TlsConnector::connect API surface.
rama-boring = { version = "0.6", optional = true }
rama-boring-tokio = { version = "0.6", optional = true }

# Optional UI dep: only pulled in when --features ui is set.
# Both `glow` (OpenGL 2+) and `wgpu` (DX12/Vulkan/Metal) are compiled in;
# the binary picks one at startup — glow by default for compat with the
Expand Down
Loading
Loading