near-workspaces 0.2.1

Library for automating workflows and testing NEAR smart contracts.
Documentation
1
2
3
4
5
6
fn main() {
    let doc_build = cfg!(doc) || std::env::var("DOCS_RS").is_ok();
    if !doc_build && cfg!(feature = "install") {
        near_sandbox_utils::install().expect("Could not install sandbox");
    }
}