Using LinkedMap that preserves insertion order for the implementation and also added unit tests for that.
36 lines
1.2 KiB
Modula-2
Executable File
36 lines
1.2 KiB
Modula-2
Executable File
module git.wamblee.org/converge
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/ActiveState/termtest/conpty v0.5.0
|
|
github.com/a-h/templ v0.2.747
|
|
github.com/creack/pty v1.1.21
|
|
github.com/fsnotify/fsnotify v1.7.0
|
|
github.com/gliderlabs/ssh v0.3.7
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/hashicorp/yamux v0.1.1
|
|
github.com/pkg/sftp v1.13.6
|
|
github.com/prometheus/client_golang v1.19.1
|
|
github.com/stretchr/testify v1.9.0
|
|
golang.org/x/crypto v0.25.0
|
|
golang.org/x/term v0.22.0
|
|
)
|
|
|
|
require (
|
|
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
|
|
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/kr/fs v0.1.0 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_model v0.5.0 // indirect
|
|
github.com/prometheus/common v0.48.0 // indirect
|
|
github.com/prometheus/procfs v0.12.0 // indirect
|
|
golang.org/x/sys v0.22.0 // indirect
|
|
google.golang.org/protobuf v1.33.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|