Files
infix/src/webui/go.mod
T
Joachim Wiberg d02f45d777 webui: depend on kernelkit/goyang fork instead of an in-tree copy
The three YANG 1.1 fixes lived as a frozen, one-shot copy of goyang
v1.6.3 under internal/goyang (via a local `replace`) — invisible to
dependency/CVE tracking and impossible to update.  Move them to the
maintained kernelkit/goyang fork (v1.6.3-kkit branch) and depend on it
through go.mod, pinned by commit hash; drop the in-tree copy.  getopt
falls out of the dependency set since it was only used by goyang's CLI,
not pkg/yang.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
2026-06-17 20:50:01 +02:00

14 lines
385 B
AMPL

module infix/webui
go 1.22.0
toolchain go1.22.2
require github.com/openconfig/goyang v1.6.3
require github.com/google/go-cmp v0.7.0 // indirect
// kernelkit/goyang fork carrying our YANG 1.1 fixes: reference on Value,
// multiple uses-augments, and must in rpc input/output.
replace github.com/openconfig/goyang => github.com/kernelkit/goyang v1.6.4-0.20260617163501-afcacf84230c