You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
529 B
TOML

6 years ago
[package]
name = "appname"
version = "0.1.0"
6 years ago
authors = ["Your Name <email@address.com>"]
6 years ago
edition = "2018"
[lib]
crate-type = ["cdylib"]
6 years ago
[dependencies]
seed = "^0.5.1"
5 years ago
wasm-bindgen = "^0.2.50"
6 years ago
# For serialization, eg sending requests to a server. Otherwise, not required.
serde = { version = "^1.0.85", features = ['derive'] }
futures = "^0.1.26"
[dev-dependencies]
5 years ago
wasm-bindgen-test = "0.2.50" # NOTE: keep in sync with wasm-bindgen version
[profile.release] # Attempts to minimize file size
lto = true
5 years ago
opt-level = 'z'