mirror of
https://codeberg.org/scip/ephemerup.git
synced 2025-12-16 20:20:58 +01:00
47 lines
1.7 KiB
Modula-2
47 lines
1.7 KiB
Modula-2
module codeberg.org/scip/ephemerup/upctl
|
|
|
|
go 1.24.0
|
|
|
|
require (
|
|
codeberg.org/scip/ephemerup/common v0.0.0-20231001134723-a1b3fe6f25d1
|
|
github.com/imroc/req/v3 v3.56.0
|
|
github.com/jarcoal/httpmock v1.3.1
|
|
github.com/olekukonko/tablewriter v0.0.5
|
|
github.com/schollz/progressbar/v3 v3.13.1
|
|
github.com/spf13/cobra v1.6.1
|
|
github.com/spf13/pflag v1.0.10
|
|
github.com/spf13/viper v1.15.0
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.2.0 // indirect
|
|
github.com/clipperhouse/uax29/v2 v2.2.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/icholy/digest v1.1.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.1 // indirect
|
|
github.com/klauspost/compress v1.18.1 // indirect
|
|
github.com/magiconair/properties v1.8.10 // indirect
|
|
github.com/mattn/go-runewidth v0.0.19 // indirect
|
|
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.9 // indirect
|
|
github.com/quic-go/qpack v0.5.1 // indirect
|
|
github.com/quic-go/quic-go v0.56.0 // indirect
|
|
github.com/refraction-networking/utls v1.8.1 // indirect
|
|
github.com/spf13/afero v1.9.5 // indirect
|
|
github.com/spf13/cast v1.5.1 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/subosito/gotenv v1.4.2 // indirect
|
|
golang.org/x/crypto v0.44.0 // indirect
|
|
golang.org/x/net v0.47.0 // indirect
|
|
golang.org/x/sys v0.38.0 // indirect
|
|
golang.org/x/term v0.37.0 // indirect
|
|
golang.org/x/text v0.31.0 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
replace codeberg.org/scip/ephemerup/common => ../common
|