From 4d76cb45de9a7811ab302619c0e0260441e7dd96 Mon Sep 17 00:00:00 2001 From: Tyler Date: Fri, 2 Jul 2021 11:09:51 -0700 Subject: [PATCH] Fixes odd build error in file I did not touch. - Adds 'full' features required for imported struct. - see https://docs.rs/syn/1.0.73/syn/struct.ItemFn.html --- src/uucore_procs/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uucore_procs/Cargo.toml b/src/uucore_procs/Cargo.toml index 195912ff6..0be04db5c 100644 --- a/src/uucore_procs/Cargo.toml +++ b/src/uucore_procs/Cargo.toml @@ -18,7 +18,7 @@ proc-macro = true [dependencies] proc-macro2 = "1.0" quote = "1.0" -syn = { version="1.0" } +syn = { version="1.0", features = ["full"] } [features] default = []