2022-02-27 14:22:22 -07:00
|
|
|
# You must change these to your own details.
|
2022-02-27 13:40:36 -07:00
|
|
|
[package]
|
|
|
|
name = "web-optimle"
|
2022-02-27 14:22:22 -07:00
|
|
|
description = "My super awesome Rust, WebAssembly, and Webpack project!"
|
2022-02-27 13:40:36 -07:00
|
|
|
version = "0.1.0"
|
2022-02-27 14:22:22 -07:00
|
|
|
authors = ["You <you@example.com>"]
|
|
|
|
categories = ["wasm"]
|
|
|
|
readme = "README.md"
|
2022-02-27 13:40:36 -07:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
2022-02-27 14:22:22 -07:00
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
# This makes the compiled code faster and smaller, but it makes compiling slower,
|
|
|
|
# so it's only enabled in release mode.
|
|
|
|
lto = true
|
2022-02-27 13:40:36 -07:00
|
|
|
|
|
|
|
[features]
|
2022-02-27 14:22:22 -07:00
|
|
|
# If you uncomment this line, it will enable `wee_alloc`:
|
|
|
|
default = ["wee_alloc"]
|
2022-02-27 13:40:36 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2022-02-27 14:22:22 -07:00
|
|
|
# The `wasm-bindgen` crate provides the bare minimum functionality needed
|
|
|
|
# to interact with JavaScript.
|
|
|
|
wasm-bindgen = "0.2.45"
|
2022-02-27 13:40:36 -07:00
|
|
|
|
2022-02-27 14:22:22 -07:00
|
|
|
# `wee_alloc` is a tiny allocator for wasm that is only ~1K in code size
|
|
|
|
# compared to the default allocator's ~10K. However, it is slower than the default
|
|
|
|
# allocator, so it's not enabled by default.
|
|
|
|
wee_alloc = { version = "0.4.2", optional = true }
|
|
|
|
|
|
|
|
# The `web-sys` crate allows you to interact with the various browser APIs,
|
|
|
|
# like the DOM.
|
|
|
|
[dependencies.web-sys]
|
|
|
|
version = "0.3.22"
|
|
|
|
features = ["console"]
|
2022-02-27 13:40:36 -07:00
|
|
|
|
2022-02-27 14:22:22 -07:00
|
|
|
# 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 it's only enabled
|
|
|
|
# in debug mode.
|
|
|
|
[target."cfg(debug_assertions)".dependencies]
|
|
|
|
console_error_panic_hook = "0.1.5"
|
|
|
|
|
|
|
|
# These crates are used for running unit tests.
|
|
|
|
[dev-dependencies]
|
|
|
|
wasm-bindgen-test = "0.2.45"
|
|
|
|
futures = "0.1.27"
|
|
|
|
js-sys = "0.3.22"
|
|
|
|
wasm-bindgen-futures = "0.3.22"
|