dzura/client-web/Cargo.toml
2024-08-06 20:23:08 -07:00

25 lines
321 B
TOML

[package]
name = "client-web"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
wasm-bindgen = "0.2.92"
game = { path = "../game" }
[dependencies.web-sys]
version = "0.3.69"
features = [
'Document',
'Element',
'HtmlElement',
'Node',
'Window',
'Event',
]