From 45b68870dc6cc58d7a272c470bc1ea20fa42d694 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 17 May 2018 10:39:44 -0700 Subject: [PATCH] Disable the `span` feature temporarily It's broken on nightly and needs fixing --- crates/backend/Cargo.toml | 2 +- crates/macro/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/backend/Cargo.toml b/crates/backend/Cargo.toml index dfb8f6f3..9e855a31 100644 --- a/crates/backend/Cargo.toml +++ b/crates/backend/Cargo.toml @@ -11,7 +11,7 @@ Backend code generation of the wasm-bindgen tool """ [features] -spans = ["proc-macro2/nightly"] +spans = [] [dependencies] quote = '0.5' diff --git a/crates/macro/Cargo.toml b/crates/macro/Cargo.toml index e746a2ea..31af846e 100644 --- a/crates/macro/Cargo.toml +++ b/crates/macro/Cargo.toml @@ -14,7 +14,7 @@ Definition of the `#[wasm_bindgen]` attribute, an internal dependency proc-macro = true [features] -spans = ["proc-macro2/nightly", "wasm-bindgen-backend/spans"] +spans = ["wasm-bindgen-backend/spans"] [dependencies] syn = { version = '0.13', features = ['full'] }