vkfetch-rs 0.2.0

vkfetch-rs is a fetch-program that displays basic information about your vulkan-compatible graphic card(s)!
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    match pkg_config::probe_library("vulkan") {
        Ok(_) => {}
        Err(e) => {
            panic!(
                "Feature `vulkan` is enabled but failed to find the Vulkan loader: {}",
                e
            );
        }
    }
}