39 lines
643 B
TOML
39 lines
643 B
TOML
[package]
|
|
name = "railwayka-landing"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2.104"
|
|
wasm-bindgen-futures = "0.4.54"
|
|
js-sys = "0.3.81"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.81"
|
|
features = [
|
|
"console",
|
|
"Document",
|
|
"Element",
|
|
"HtmlElement",
|
|
"Node",
|
|
"Window",
|
|
"Location",
|
|
"IntersectionObserver",
|
|
"IntersectionObserverEntry",
|
|
"IntersectionObserverInit",
|
|
"DomRect",
|
|
"NodeList",
|
|
"DomTokenList",
|
|
"HtmlCanvasElement",
|
|
"CanvasRenderingContext2d",
|
|
"Performance",
|
|
]
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|