weeblib/Cargo.toml
2024-10-31 23:34:05 +01:00

24 lines
No EOL
647 B
TOML

[package]
name = "weeblib"
version = "0.2.0"
edition = "2021"
authors = ["Hamcha <hamcha@crunchy.rocks>"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
wasm-bindgen = "0.2.84"
# The `console_error_panic_hook` crate provides better debugging of panics by
# logging them with `console.error`. This is great for development, but requires
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
# code size when deploying.
console_error_panic_hook = { version = "0.1.7", optional = true }
[dev-dependencies]
wasm-bindgen-test = "0.3.34"
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = "s"