api-macro: explicitly enable syn's visit-mut feature

otherwise the build fails because the module is not visible

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
Fabian Grünbichler 2020-03-23 08:04:23 +01:00
parent f5d15872f4
commit 6a21867d87

View File

@ -15,7 +15,7 @@ proc-macro = true
failure = "0.1"
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = [ "full" ] }
syn = { version = "1.0", features = [ "full", "visit-mut" ] }
[dev-dependencies]
futures = "0.3"