53 lines
1.1 KiB
TOML
53 lines
1.1 KiB
TOML
[package]
|
|
name = "frontend"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-futures = "0.4"
|
|
js-sys = "0.3"
|
|
web-sys = { version = "0.3", features = [
|
|
"Document",
|
|
"Window",
|
|
"Element",
|
|
"HtmlCanvasElement",
|
|
"HtmlElement",
|
|
"Node",
|
|
"console",
|
|
"Response",
|
|
"HtmlButtonElement",
|
|
"Event",
|
|
"MouseEvent",
|
|
"Geolocation",
|
|
"Navigator",
|
|
"Position",
|
|
"PositionError",
|
|
"Coordinates",
|
|
"Cache",
|
|
"CacheStorage",
|
|
"Request",
|
|
"RequestInit",
|
|
"RequestMode",
|
|
"Response",
|
|
"HtmlInputElement",
|
|
"PositionOptions",
|
|
"DomTokenList",
|
|
"CssStyleDeclaration",
|
|
"Performance",
|
|
] }
|
|
wgpu = { version = "0.19", default-features = false, features = ["webgl", "wgsl"] }
|
|
winit = { version = "0.29", default-features = false, features = ["rwh_06"] }
|
|
bytemuck = { version = "1.14", features = ["derive"] }
|
|
log = "0.4"
|
|
console_error_panic_hook = "0.1"
|
|
console_log = "1.0"
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
bincode = "1.3"
|
|
earcutr = "0.4"
|