Skip to content

Commit

Permalink
Correct BuildScript.cfgs and BuildScript.linked_libs to be String…
Browse files Browse the repository at this point in the history
… rather than PathBuf
  • Loading branch information
robojumper committed May 4, 2020
1 parent da4d25c commit e84b58b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/messages.rs
Expand Up @@ -68,11 +68,11 @@ pub struct BuildScript {
/// The package this build script execution belongs to
pub package_id: PackageId,
/// The libs to link
pub linked_libs: Vec<PathBuf>,
pub linked_libs: Vec<String>,
/// 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 e84b58b

Please sign in to comment.