mirror of
https://github.com/kairos-io/kairos-sdk.git
synced 2025-04-27 19:15:23 +00:00
This had some side effects: - Have to add some utils from the kairos/machine modules, which IMHO should not be there, they should be here if the are generic enough - Dropping the sdk dir, just have the modules in the root dir Signed-off-by: Itxaka <itxaka.garcia@spectrocloud.com>
61 lines
2.5 KiB
Modula-2
61 lines
2.5 KiB
Modula-2
module github.com/kairos-io/kairos-sdk
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/hashicorp/go-multierror v1.1.1
|
|
github.com/itchyny/gojq v0.12.12
|
|
github.com/jaypipes/ghw v0.10.0
|
|
github.com/mudler/go-pluggable v0.0.0-20230126220627-7710299a0ae5
|
|
github.com/mudler/yip v0.11.5-0.20230124143654-91e88dfb6648
|
|
github.com/onsi/ginkgo/v2 v2.9.1
|
|
github.com/onsi/gomega v1.27.4
|
|
github.com/twpayne/go-vfs v1.7.2
|
|
github.com/zcalusic/sysinfo v0.9.5
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
atomicgo.dev/cursor v0.1.1 // indirect
|
|
atomicgo.dev/keyboard v0.2.9 // indirect
|
|
github.com/StackExchange/wmi v1.2.1 // indirect
|
|
github.com/aybabtme/rgbterm v0.0.0-20170906152045-cc83f3b3ce59 // indirect
|
|
github.com/chuckpreslar/emission v0.0.0-20170206194824-a7ddd980baf9 // indirect
|
|
github.com/containerd/console v1.0.3 // indirect
|
|
github.com/denisbrodbeck/machineid v1.0.1 // indirect
|
|
github.com/ghodss/yaml v1.0.0 // indirect
|
|
github.com/go-logr/logr v1.2.3 // indirect
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
|
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
|
|
github.com/google/go-cmp v0.5.9 // indirect
|
|
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
|
|
github.com/gookit/color v1.5.2 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/itchyny/timefmt-go v0.1.5 // indirect
|
|
github.com/jaypipes/pcidb v1.0.0 // indirect
|
|
github.com/joho/godotenv v1.5.1 // indirect
|
|
github.com/lithammer/fuzzysearch v1.1.5 // indirect
|
|
github.com/mattn/go-isatty v0.0.17 // indirect
|
|
github.com/mattn/go-runewidth v0.0.14 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
|
|
github.com/onsi/ginkgo v1.16.5 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pterm/pterm v0.12.55 // indirect
|
|
github.com/qeesung/image2ascii v1.0.1 // indirect
|
|
github.com/rivo/uniseg v0.4.4 // indirect
|
|
github.com/stretchr/testify v1.8.2 // indirect
|
|
github.com/wayneashleyberry/terminal-dimensions v1.1.0 // indirect
|
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
|
golang.org/x/exp v0.0.0-20220916125017-b168a2c6b86b // indirect
|
|
golang.org/x/net v0.8.0 // indirect
|
|
golang.org/x/sys v0.6.0 // indirect
|
|
golang.org/x/term v0.6.0 // indirect
|
|
golang.org/x/text v0.8.0 // indirect
|
|
golang.org/x/tools v0.7.0 // indirect
|
|
gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0 // indirect
|
|
howett.net/plist v1.0.0 // indirect
|
|
)
|