19 lines
562 B
TOML
19 lines
562 B
TOML
# [TSM.ID].[11031972] -- All Rights Reserved. Proprietary & Confidential.
|
|
[package]
|
|
name = "xcu-quic"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
xcu-sfu = { path = "../xcu-sfu" }
|
|
quinn = "0.10" # WebTransport / QUIC Protocol
|
|
rustls = "0.21"
|
|
rustls-pemfile = "2.0" # Parse Let's Encrypt PEM files
|
|
rcgen = "0.11" # Auto TLS Certificate Generator (Self-Signed fallback)
|
|
rkyv = { version = "0.7", features = ["validation"] } # Zero-Copy Serialization
|
|
tokio = { version = "1.37", features = ["full"] }
|
|
tracing = "0.1"
|
|
anyhow = "1.0"
|
|
sha2 = "0.10"
|
|
hex = "0.4"
|