Skip to content

Commit

Permalink
Correct BuildScripts.cfgs to be String rather than PathBuf
Browse files Browse the repository at this point in the history
  • Loading branch information
robojumper committed May 4, 2020
1 parent da4d25c commit 9230436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/messages.rs
Expand Up @@ -72,7 +72,7 @@ pub struct BuildScript {
/// The paths to search when resolving libs
pub linked_paths: Vec<PathBuf>,
/// Various `--cfg` flags to pass to the compiler
pub cfgs: Vec<PathBuf>,
pub cfgs: Vec<String>,
/// The environment variables to add to the compilation
pub env: Vec<(String, String)>,
/// The `OUT_DIR` environment variable where this script places its output
Expand Down

0 comments on commit 9230436

Please sign in to comment.