rest-server/go.mod

31 lines
1,022 B
Modula-2
Raw Normal View History

2020-02-26 21:34:33 +01:00
module github.com/restic/rest-server
2025-12-06 20:18:36 +01:00
go 1.24.0
2020-02-26 21:34:33 +01:00
require (
github.com/coreos/go-systemd/v22 v22.6.0
github.com/gorilla/handlers v1.5.2
github.com/minio/sha256-simd v1.0.1
2023-01-14 19:09:42 +01:00
github.com/miolini/datacounter v1.0.3
github.com/prometheus/client_golang v1.23.2
github.com/spf13/cobra v1.10.2
golang.org/x/crypto v0.45.0
2020-02-26 21:34:33 +01:00
)
2023-01-14 19:22:08 +01:00
require (
github.com/beorn7/perks v1.0.1 // indirect
2025-02-07 22:38:37 +01:00
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
2023-01-14 19:22:08 +01:00
github.com/inconshreveable/mousetrap v1.1.0 // indirect
2025-02-07 22:38:37 +01:00
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
github.com/kr/text v0.2.0 // indirect
2025-02-07 22:38:37 +01:00
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/prometheus/client_model v0.6.2 // indirect
github.com/prometheus/common v0.66.1 // indirect
github.com/prometheus/procfs v0.16.1 // indirect
github.com/spf13/pflag v1.0.9 // indirect
go.yaml.in/yaml/v2 v2.4.2 // indirect
golang.org/x/sys v0.38.0 // indirect
google.golang.org/protobuf v1.36.8 // indirect
2023-01-14 19:22:08 +01:00
)