Remove usage of syn's visit-mut feature (#631)

Looks like we're the only one in the dependency graph enabling this, so let's
try to cut down on compile times by not requiring it.
This commit is contained in:
Alex Crichton
2018-08-03 14:11:44 -05:00
committed by GitHub
parent 1588a3cbcf
commit 2a6d98a6c9
2 changed files with 37 additions and 26 deletions

View File

@ -20,5 +20,5 @@ log = "0.4"
proc-macro2 = "0.4.8"
quote = '0.6'
serde_json = "1.0"
syn = { version = '0.14', features = ['full', 'visit-mut'] }
syn = { version = '0.14', features = ['full', 'visit'] }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.15" }