mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 01:13:00 +02:00
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>
14 lines
385 B
AMPL
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
|