conan-rs

A Rust wrapper of the conan C/C++ package manager (conan.io) to simplify usage in build scripts.

```toml

Cargo.toml

[build-dependencies] conan = "0.1" ```

The conan executable is assumed to be conan unless the CONAN environment variable is set.

```rust extern crate conan; use conan::*;

fn main() { let targetos = env::var("CARGOCFGTARGETOS").unwrap(); let targetarch = env::var("CARGOCFGTARGETARCH").unwrap(); let conanprofile = format!("{}-{}", targetos, target_arch);

let command = InstallCommandBuilder::new()
    .with_profile(&conan_profile)
    .build_policy(BuildPolicy::Missing)
    .recipe_path(Path::new("conanfile.txt"))
    .build();

if let Some(build_info) = command.generate() {
    println!("using conan build info");
    build_info.cargo_emit();
    return;
}

} ```