|
1 | 1 | module github.com/DSpeichert/netbootd |
2 | 2 |
|
3 | | -go 1.16 |
| 3 | +go 1.23.0 |
| 4 | + |
| 5 | +toolchain go1.24.0 |
4 | 6 |
|
5 | 7 | require ( |
6 | | - github.com/Masterminds/goutils v1.1.1 // indirect |
7 | | - github.com/Masterminds/semver v1.5.0 // indirect |
8 | | - github.com/Masterminds/sprig v2.22.0+incompatible |
9 | | - github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf |
10 | | - github.com/fsnotify/fsnotify v1.4.9 |
11 | | - github.com/google/uuid v1.2.0 // indirect |
12 | | - github.com/gorilla/mux v1.8.0 |
13 | | - github.com/huandu/xstrings v1.3.2 // indirect |
14 | | - github.com/imdario/mergo v0.3.12 // indirect |
15 | | - github.com/insomniacslk/dhcp v0.0.0-20210621130208-1cac67f12b1e |
16 | | - github.com/mitchellh/copystructure v1.2.0 // indirect |
| 8 | + github.com/Masterminds/sprig/v3 v3.3.0 |
| 9 | + github.com/coreos/go-systemd/v22 v22.5.0 |
| 10 | + github.com/fsnotify/fsnotify v1.9.0 |
| 11 | + github.com/gorilla/mux v1.8.1 |
| 12 | + github.com/insomniacslk/dhcp v0.0.0-20250417080101-5f8cf70e8c5f |
17 | 13 | github.com/pin/tftp v2.1.0+incompatible |
18 | | - github.com/rs/zerolog v1.23.0 |
19 | | - github.com/spf13/cobra v1.2.1 |
20 | | - github.com/spf13/viper v1.8.1 |
21 | | - github.com/stretchr/objx v0.1.1 // indirect |
22 | | - github.com/u-root/uio v0.0.0-20210528151154-e40b768296a7 |
23 | | - golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e // indirect |
24 | | - golang.org/x/net v0.0.0-20210614182718-04defd469f4e |
25 | | - golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c |
| 14 | + github.com/rs/zerolog v1.34.0 |
| 15 | + github.com/spf13/cobra v1.9.1 |
| 16 | + github.com/spf13/viper v1.20.1 |
| 17 | + github.com/u-root/uio v0.0.0-20240224005618-d2acac8f3701 |
| 18 | + golang.org/x/net v0.42.0 |
| 19 | + golang.org/x/sys v0.34.0 |
26 | 20 | gopkg.in/yaml.v2 v2.4.0 |
27 | 21 | ) |
28 | 22 |
|
| 23 | +require ( |
| 24 | + dario.cat/mergo v1.0.2 // indirect |
| 25 | + github.com/Masterminds/goutils v1.1.1 // indirect |
| 26 | + github.com/Masterminds/semver/v3 v3.4.0 // indirect |
| 27 | + github.com/go-viper/mapstructure/v2 v2.4.0 // indirect |
| 28 | + github.com/google/uuid v1.6.0 // indirect |
| 29 | + github.com/huandu/xstrings v1.5.0 // indirect |
| 30 | + github.com/inconshreveable/mousetrap v1.1.0 // indirect |
| 31 | + github.com/mattn/go-colorable v0.1.14 // indirect |
| 32 | + github.com/mattn/go-isatty v0.0.20 // indirect |
| 33 | + github.com/mitchellh/copystructure v1.2.0 // indirect |
| 34 | + github.com/mitchellh/reflectwalk v1.0.2 // indirect |
| 35 | + github.com/pelletier/go-toml/v2 v2.2.4 // indirect |
| 36 | + github.com/pierrec/lz4/v4 v4.1.22 // indirect |
| 37 | + github.com/rogpeppe/go-internal v1.12.0 // indirect |
| 38 | + github.com/sagikazarmark/locafero v0.10.0 // indirect |
| 39 | + github.com/shopspring/decimal v1.4.0 // indirect |
| 40 | + github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect |
| 41 | + github.com/spf13/afero v1.14.0 // indirect |
| 42 | + github.com/spf13/cast v1.9.2 // indirect |
| 43 | + github.com/spf13/pflag v1.0.7 // indirect |
| 44 | + github.com/stretchr/objx v0.5.2 // indirect |
| 45 | + github.com/subosito/gotenv v1.6.0 // indirect |
| 46 | + golang.org/x/crypto v0.40.0 // indirect |
| 47 | + golang.org/x/text v0.27.0 // indirect |
| 48 | + gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect |
| 49 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
| 50 | +) |
| 51 | + |
29 | 52 | replace github.com/pin/tftp => github.com/digitalrebar/tftp v0.0.0-20200914190809-39d58dc90c67 |
0 commit comments