mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-15 12:44:31 +03:00
a6fe0cefa8
Most of the CLI crates were already in the 2018 edition, and it turns out that one of the macro crates was already in the 2018 edition so we may as well move everything to the 2018 edition! Always nice to remove those `extern crate` statements nowadays! This commit also does a `cargo fmt --all` to make sure we're conforming with style again.
24 lines
651 B
TOML
24 lines
651 B
TOML
[package]
|
|
name = "wasm-bindgen-webidl"
|
|
version = "0.2.40"
|
|
authors = ["The wasm-bindgen Developers"]
|
|
license = "MIT/Apache-2.0"
|
|
categories = ["wasm"]
|
|
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/webidl"
|
|
homepage = "https://rustwasm.github.io/wasm-bindgen/"
|
|
documentation = "https://docs.rs/wasm-bindgen"
|
|
description = """
|
|
Support for parsing WebIDL specific to wasm-bindgen
|
|
"""
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
failure = "0.1.2"
|
|
heck = "0.3"
|
|
log = "0.4.1"
|
|
proc-macro2 = "0.4.8"
|
|
quote = '0.6'
|
|
syn = { version = '0.15', features = ['full'] }
|
|
wasm-bindgen-backend = { version = "=0.2.40", path = "../backend" }
|
|
weedle = "0.8"
|