From f4fdf65528c413c582d2ba47f52840c332dc3e45 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Sat, 14 Feb 2026 16:20:02 -0500 Subject: [PATCH] Minor documentation updates --- README.md | 3 +-- wiki/developers.md | 3 +++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d968205..e09ff89 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,7 @@ See the [developer guide](https://github.com/rwinkhart/libmutton/blob/main/wiki/ # Roadmap #### Release v1.0.0 -- [ ] Stabilize API (reduce need for future breaking changes) -- [ ] Ensure usability as external C library for use in platform-native languages (e.g. Swift, Kotlin) +- Stabilize API (reduce need for future breaking changes) - [ ] Create packaging scripts (libmuttonserver) - [ ] Stable source PKGBUILD - [ ] Stable source APKBUILD diff --git a/wiki/developers.md b/wiki/developers.md index 71162e3..a84ccf3 100644 --- a/wiki/developers.md +++ b/wiki/developers.md @@ -3,6 +3,9 @@ libmutton was designed to be usable as a library for building other compatible password managers off of. [MUTN](https://github.com/rwinkhart/MUTN) is the official reference CLI password manager, however libmutton can be implemented in many other unique ways. +## Dependency Replacements (IMPORTANT) +In libmutton's `go.mod`, you'll see dependency replacements for `golang.org/x/sys` and `github.com/Microsoft/go-winio`. Full support for Windows and FreeBSD requires these patched modules, so be sure to maintain these same replacements in your client's `go.mod`! + ## Build Tags Custom build tags can (and sometimes must) be used to achieve desired results.