31 lines
886 B
TOML
31 lines
886 B
TOML
# file: crates/apps/game-realtime-webtransport-browser-smoke/Cargo.toml
|
|
# version: 1
|
|
|
|
[package]
|
|
name = "game-realtime-webtransport-browser-smoke"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
publish.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
game-realtime-transport-lib = { path = "../../common/game-realtime-transport-lib" }
|
|
game-realtime-webtransport-lib = { path = "../../common/game-realtime-webtransport-lib" }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
game-logging-lib = { path = "../../common/game-logging-lib" }
|
|
tokio = { workspace = true, features = ["macros", "rt", "time"] }
|
|
tracing.workspace = true
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
wasm-bindgen.workspace = true
|
|
wasm-bindgen-futures.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|