From 167274c9b42a7eb42dc1d3a4cef8e91bac6cfa28 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 29 Nov 2018 12:22:54 -0800 Subject: [PATCH] Remove an unused crate from wasm-bindgen-webidl Apparently this is no longer needed according to rustc! --- crates/webidl/Cargo.toml | 1 - crates/webidl/src/lib.rs | 2 -- 2 files changed, 3 deletions(-) diff --git a/crates/webidl/Cargo.toml b/crates/webidl/Cargo.toml index 85a2e0c55..1b2f4d833 100644 --- a/crates/webidl/Cargo.toml +++ b/crates/webidl/Cargo.toml @@ -13,7 +13,6 @@ Support for parsing WebIDL specific to wasm-bindgen [dependencies] failure = "0.1.2" -failure_derive = "0.1.2" heck = "0.3" log = "0.4.1" proc-macro2 = "0.4.8" diff --git a/crates/webidl/src/lib.rs b/crates/webidl/src/lib.rs index 1eecf9f84..1b8ef3995 100644 --- a/crates/webidl/src/lib.rs +++ b/crates/webidl/src/lib.rs @@ -11,8 +11,6 @@ emitted for the types and methods described in the WebIDL. #[macro_use] extern crate failure; -#[macro_use] -extern crate failure_derive; extern crate heck; #[macro_use] extern crate log;