You can not 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 = "wasm_tetris"
- version = "0.1.0"
- authors = ["Inderjit Gill <inderjit.gill@gmail.com>"]
-
- [lib]
- crate-type = ["cdylib"]
-
- [dependencies]
- wasm-bindgen = "0.2.17"
- failure = "0.1.2"
-
- [profile.release]
- # Include function names in the `.wasm` for better debugging and
- # profiling. Comment this out if you're trying to create the smallest `.wasm`
- # binaries you can.
- debug = false
-
- # # Uncomment these lines to create smaller `.wasm` binaries, at the cost of
- # # longer compile times.
- codegen-units = 1
- incremental = false
- lto = true
- opt-level = "z"
|