Files
games/crates/common/game-realtime-webtransport-lib/Cargo.toml
2026-09-22 06:34:31 +02:00

31 lines
882 B
TOML

# file: crates/common/game-realtime-webtransport-lib/Cargo.toml
# version: 3
[package]
name = "game-realtime-webtransport-lib"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
publish.workspace = true
[dependencies]
game-realtime-transport-lib = { path = "../game-realtime-transport-lib" }
tracing.workspace = true
url.workspace = true
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rcgen = { workspace = true, features = ["ring"] }
tokio = { workspace = true, features = ["time"] }
web-transport-quinn = { workspace = true, features = ["ring"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-transport-wasm.workspace = true
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
tokio = { workspace = true, features = ["macros", "rt", "time"] }
[lints]
workspace = true