weeblib/Cargo.toml

24 lines
647 B
TOML
Raw Normal View History

2024-10-24 21:07:09 +00:00
[package]
name = "weeblib"
version = "0.1.0"
edition = "2021"
2024-10-25 18:13:54 +00:00
authors = ["Hamcha <hamcha@crunchy.rocks>"]
2024-10-24 21:07:09 +00:00
2024-10-25 18:13:54 +00:00
[lib]
crate-type = ["cdylib", "rlib"]
2024-10-24 21:07:09 +00:00
[dependencies]
2024-10-25 18:13:54 +00:00
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"