CBL-Mariner/toolkit/tools/go.mod

41 строка
1.6 KiB
Modula-2
Исходник Обычный вид История

module github.com/microsoft/CBL-Mariner/toolkit/tools
2020-08-07 06:17:52 +03:00
go 1.20
2020-08-07 06:17:52 +03:00
require (
Add network configuration for unattended ISO install (#3008) * save initial network config prototype * save current changes for network configuration * add feature for reading device name * rename file name * save current workload * save and re-implement * network config implementation * test for pxe-boot * add unit test * remove unnecessary change and add more condition checking * remove test file * fix go formatting errors * fix package path * fix error in package path * fix bug in unit test * fix setting hostname issue and add addtional test * Update toolkit/tools/imagegen/configuration/networkconfig.go Co-authored-by: Pawel Winogrodzki <pawelwi@microsoft.com> * resolve some comments * resolve comments * resolve go formatting error * run go mod tidy * Update toolkit/docs/formats/imageconfig.md Co-authored-by: Pawel Winogrodzki <pawelwi@microsoft.com> * fix comment * enable mbr partitioning support in Mariner * update file format and remove unnecessary changes * update implementation * fix go formatting error * modify comment for better explanation * fix typo * Update toolkit/tools/imagegen/diskutils/diskutils.go Co-authored-by: Daniel McIlvaney <damcilva@microsoft.com> * fix bug in sector calculation * save changes * add more comment support * resolve comments * resolve comments * Update toolkit/tools/imagegen/diskutils/diskutils.go Co-authored-by: Pawel Winogrodzki <pawelwi@microsoft.com> * update regex pattern matching check * merge with upstream branch and re-update go formatting * remove unnecessary changes * update findBootIfValue * staging change for testing * update bootif code * fix incorrect file push * Update toolkit/docs/formats/imageconfig.md Co-authored-by: Pawel Winogrodzki <pawelwi@microsoft.com> * Update toolkit/tools/imagegen/configuration/networkconfig_test.go Co-authored-by: Pawel Winogrodzki <pawelwi@microsoft.com> * Update toolkit/tools/imagegen/configuration/networkconfig_test.go Co-authored-by: Pawel Winogrodzki <pawelwi@microsoft.com> * Update toolkit/tools/imagegen/configuration/networkconfig_test.go Co-authored-by: Pawel Winogrodzki <pawelwi@microsoft.com> * Update toolkit/tools/imagegen/configuration/networkconfig.go Co-authored-by: Pawel Winogrodzki <pawelwi@microsoft.com> * resolve comments * update comments * remove unnecessary files * fix comment * update confusing variable name Co-authored-by: Henry Li <lihl@microsoft.com> Co-authored-by: Pawel Winogrodzki <pawelwi@microsoft.com> Co-authored-by: Daniel McIlvaney <damcilva@microsoft.com>
2022-07-11 23:55:16 +03:00
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d
github.com/bendahl/uinput v1.4.0
2020-08-07 06:17:52 +03:00
github.com/cavaliercoder/go-cpio v0.0.0-20180626203310-925f9528c45e
github.com/gdamore/tcell v1.4.0
github.com/jinzhu/copier v0.3.2
github.com/juliangruber/go-intersect v1.1.0
github.com/klauspost/pgzip v1.2.5
github.com/moby/sys/mountinfo v0.6.2
github.com/muesli/crunchy v0.4.0
2020-08-07 06:17:52 +03:00
github.com/rivo/tview v0.0.0-20200219135020-0ba8301b415c
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.7.1
github.com/ulikunitz/xz v0.5.10
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f
gonum.org/v1/gonum v0.11.0
2020-08-07 06:17:52 +03:00
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/yaml.v3 v3.0.0
)
require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/klauspost/compress v1.10.5 // indirect
github.com/lucasb-eyer/go-colorful v1.0.3 // indirect
github.com/mattn/go-runewidth v0.0.7 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20170218160415-a3153f7040e9 // indirect
golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3 // indirect
golang.org/x/text v0.3.8 // indirect
2020-08-07 06:17:52 +03:00
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
)