sheldon 0.5.2

A fast, configurable, shell plugin manager.
Documentation
1
2
3
4
5
6
7
8
//! Simple build script to pass through the target we are building.

fn main() {
    println!(
        "cargo:rustc-env=TARGET={}",
        std::env::var("TARGET").unwrap()
    );
}