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