wasm-bindgen/crates/cli/Cargo.toml
dependabot-preview[bot] e0151898b7
Update assert_cmd requirement from 0.11 to 1.0 (#2188)
Updates the requirements on [assert_cmd](https://github.com/assert-rs/assert_cmd) to permit the latest version.
- [Release notes](https://github.com/assert-rs/assert_cmd/releases)
- [Changelog](https://github.com/assert-rs/assert_cmd/blob/master/CHANGELOG.md)
- [Commits](https://github.com/assert-rs/assert_cmd/compare/v0.11.0...v1.0.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-06-05 09:25:47 -05:00

53 lines
1.3 KiB
TOML

[package]
name = "wasm-bindgen-cli"
version = "0.2.63"
authors = ["The wasm-bindgen Developers"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli"
homepage = "https://rustwasm.github.io/wasm-bindgen/"
documentation = "https://rustwasm.github.io/wasm-bindgen/"
categories = ["wasm"]
description = """
Command line interface of the `#[wasm_bindgen]` attribute and project. For more
information see https://github.com/rustwasm/wasm-bindgen.
"""
edition = '2018'
[dependencies]
curl = "0.4.13"
docopt = "1.0"
env_logger = "0.7"
anyhow = "1.0"
log = "0.4"
openssl = { version = '0.10.11', optional = true }
rouille = { version = "3.0.0", default-features = false }
serde = { version = "1.0", features = ['derive'] }
serde_derive = "1.0"
serde_json = "1.0"
walrus = { version = "0.17.0", features = ['parallel'] }
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.63" }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.63" }
[dev-dependencies]
assert_cmd = "1.0"
diff = "0.1"
predicates = "1.0.0"
rayon = "1.0"
tempfile = "3.0"
walrus = "0.17"
wit-printer = "0.2"
wit-text = "0.7"
wit-validator = "0.2"
wit-walrus = "0.4"
[[test]]
name = "reference"
harness = false
[[test]]
name = "interface-types"
harness = false
[features]
vendored-openssl = ['openssl/vendored']