2020-02-26 21:34:33 +01:00
|
|
|
module github.com/restic/rest-server
|
|
|
|
|
2024-01-06 22:11:49 +01:00
|
|
|
go 1.18
|
2020-02-26 21:34:33 +01:00
|
|
|
|
|
|
|
require (
|
2023-01-14 21:00:32 +01:00
|
|
|
github.com/coreos/go-systemd/v22 v22.5.0
|
2023-11-06 19:52:31 +00:00
|
|
|
github.com/gorilla/handlers v1.5.2
|
2023-05-29 20:01:27 +00:00
|
|
|
github.com/minio/sha256-simd v1.0.1
|
2023-01-14 19:09:42 +01:00
|
|
|
github.com/miolini/datacounter v1.0.3
|
2024-01-06 21:16:41 +00:00
|
|
|
github.com/prometheus/client_golang v1.18.0
|
2023-11-06 19:52:35 +00:00
|
|
|
github.com/spf13/cobra v1.8.0
|
2024-01-08 19:33:07 +00:00
|
|
|
golang.org/x/crypto v0.18.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
|
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
|
|
github.com/felixge/httpsnoop v1.0.3 // indirect
|
|
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
2023-07-09 14:12:47 +02:00
|
|
|
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
|
2024-01-06 21:16:41 +00:00
|
|
|
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
|
|
|
|
github.com/prometheus/client_model v0.5.0 // indirect
|
|
|
|
github.com/prometheus/common v0.45.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.12.0 // indirect
|
2023-01-14 19:22:08 +01:00
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
2024-01-08 19:33:07 +00:00
|
|
|
golang.org/x/sys v0.16.0 // indirect
|
2023-07-09 14:12:47 +02:00
|
|
|
google.golang.org/protobuf v1.31.0 // indirect
|
2023-01-14 19:22:08 +01:00
|
|
|
)
|