[package] name = "wasm-gc" version = "0.1.6" authors = ["Alex Crichton "] repository = "https://github.com/alexcrichton/wasm-gc" homepage = "https://github.com/alexcrichton/wasm-gc" license = "MIT/Apache-2.0" readme = "README.md" description = "A CLI tool to garbage collect webassembly modules" keywords = ["webasm"] categories = ["development-tools"] [[bin]] name = "wasm-gc" path = "src/main.rs" [dependencies] env_logger = { version = "0.5", default-features = false } getopts = "0.2" wasm-gc-api = { path = "wasm-gc-api", version = "0.1" } [workspace] members = ['wasm-gc-capi'] [profile.release] panic = 'abort' lto = true