husk 0.1.3

Rust bindings for the mvdan.cc/sh Golang library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! This crate provides bindings to the [`mvdan.cc/sh` Golang library](https://pkg.go.dev/mvdan.cc/sh).
//!
//! # Note
//! As this library is a wrapper around a Golang library, you'll need the [Go
//! toolchain](https://go.dev/) installed on your system in order to build it.
pub mod shell;
pub mod syntax;
pub mod util;

mod bindings {
    include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
}