From c5557bd2def688425e9f91afea75b9dcb6891ecd Mon Sep 17 00:00:00 2001 From: Hunter Wittenborn Date: Sun, 4 Jun 2023 01:54:03 -0500 Subject: [PATCH] Add note about Go toolchain needing to be installed --- Cargo.toml | 2 +- src/lib.rs | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) 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;