summaryrefslogtreecommitdiff
path: root/rs/fflate-wasm/Cargo.toml
blob: 77751e01547d0a7c69fd230bfbdd48c1e0e22bee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "fflate-wasm"
version = "0.0.1"
authors = ["Arjun Barrett <arjunbarrett@gmail.com>"]
edition = "2018"

[dependencies]
fflate = { path = "../fflate", features = ["std"] }
wasm-bindgen = "0.2"

[profile.release]
opt-level = "s"
lto = true

[package.metadata.wasm-pack.profile.release]
wasm-opt = ["-Oz", "--enable-mutable-globals"]

[lib]
crate-type = ["cdylib", "rlib"]