From 145c33a647297595d5c5ac879582ead7d1ecda84 Mon Sep 17 00:00:00 2001 From: robojumper Date: Mon, 4 May 2020 14:25:05 +0200 Subject: [PATCH] Correct BuildScript.cfgs to be String rather than PathBuf --- src/messages.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/messages.rs b/src/messages.rs index 06c1943d..8b384da1 100644 --- a/src/messages.rs +++ b/src/messages.rs @@ -72,7 +72,7 @@ pub struct BuildScript { /// The paths to search when resolving libs pub linked_paths: Vec, /// Various `--cfg` flags to pass to the compiler - pub cfgs: Vec, + pub cfgs: Vec, /// The environment variables to add to the compilation pub env: Vec<(String, String)>, /// The `OUT_DIR` environment variable where this script places its output