2023-12-14 19:00:04 +01:00
|
|
|
module kleingebaeck
|
|
|
|
|
|
2023-12-15 14:50:40 +01:00
|
|
|
go 1.21
|
|
|
|
|
|
2023-12-14 19:00:04 +01:00
|
|
|
require (
|
2023-12-19 18:23:41 +01:00
|
|
|
astuart.co/goq v1.0.0
|
2024-01-01 16:24:33 +01:00
|
|
|
github.com/jarcoal/httpmock v1.3.1
|
2023-12-19 18:23:41 +01:00
|
|
|
github.com/knadh/koanf/parsers/toml v0.1.0
|
|
|
|
|
github.com/knadh/koanf/providers/confmap v0.1.0
|
2024-01-19 14:21:02 +01:00
|
|
|
github.com/knadh/koanf/providers/env v0.1.0
|
2023-12-19 18:23:41 +01:00
|
|
|
github.com/knadh/koanf/providers/file v0.1.0
|
|
|
|
|
github.com/knadh/koanf/providers/posflag v0.1.0
|
|
|
|
|
github.com/knadh/koanf/v2 v2.0.1
|
2024-01-19 14:21:02 +01:00
|
|
|
github.com/lmittmann/tint v1.0.4
|
2023-12-19 18:23:41 +01:00
|
|
|
github.com/mattn/go-isatty v0.0.20
|
|
|
|
|
github.com/spf13/pflag v1.0.5
|
2024-01-19 14:21:02 +01:00
|
|
|
github.com/tlinden/yadu v0.1.0
|
2024-01-01 16:24:33 +01:00
|
|
|
golang.org/x/sync v0.5.0
|
2023-12-19 18:23:41 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
require (
|
2024-01-19 14:21:02 +01:00
|
|
|
github.com/PuerkitoBio/goquery v1.5.1 // indirect
|
|
|
|
|
github.com/andybalholm/cascadia v1.1.0 // indirect
|
|
|
|
|
github.com/fatih/color v1.16.0 // indirect
|
2023-12-19 18:23:41 +01:00
|
|
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
|
|
|
github.com/knadh/koanf/maps v0.1.1 // indirect
|
2024-01-19 14:21:02 +01:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
2023-12-19 18:23:41 +01:00
|
|
|
github.com/mitchellh/copystructure v1.2.0 // indirect
|
|
|
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
|
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
|
|
|
|
github.com/pelletier/go-toml v1.9.5 // indirect
|
2024-01-01 16:24:33 +01:00
|
|
|
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
|
2024-01-19 14:21:02 +01:00
|
|
|
golang.org/x/sys v0.14.0 // indirect
|
|
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2023-12-14 19:00:04 +01:00
|
|
|
|
|
|
|
|
)
|