conan 0.4.2

A Rust wrapper of the conan C/C++ package manager (conan.io) to simplify usage in build scripts
Documentation
1
2
3
4
5
6
7
8
9
use super::get_remote_list;

#[test]
fn test_conan_remote_list() {
    let conan_remote_list = get_remote_list();
    if let Ok(conan_remote_list) = conan_remote_list {
        assert!(conan_remote_list.len() > 0);
    }
}