diff --git a/Cargo.toml b/Cargo.toml index 42b8dd3..2cd5f54 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "husk" -version = "0.1.2" +version = "0.1.3" authors = ["Hunter Wittenborn "] edition = "2021" description = "Rust bindings for the mvdan.cc/sh Golang library" diff --git a/src/lib.rs b/src/lib.rs index b419338..ceeead2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,8 @@ //! 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;