1
0
mirror of https://github.com/coalaura/up.git synced 2025-07-17 21:44:35 +00:00
Files
up/go.mod

33 lines
1.1 KiB
Modula-2
Raw Permalink Normal View History

2025-06-20 03:27:36 +02:00
module github.com/coalaura/up
go 1.24.2
require (
2025-06-20 15:21:16 +02:00
github.com/coalaura/logger v1.4.5
2025-06-20 16:10:38 +02:00
github.com/go-chi/chi/v5 v5.2.2
2025-06-20 19:03:14 +02:00
github.com/kevinburke/ssh_config v1.2.0
2025-06-20 17:18:42 +02:00
github.com/patrickmn/go-cache v2.1.0+incompatible
2025-06-21 02:15:41 +02:00
github.com/quic-go/quic-go v0.52.0
2025-06-20 03:27:36 +02:00
github.com/urfave/cli/v3 v3.3.8
2025-06-20 16:10:38 +02:00
github.com/vmihailenco/msgpack/v5 v5.4.1
2025-06-20 15:14:16 +02:00
golang.org/x/crypto v0.39.0
2025-06-20 03:27:36 +02:00
)
require (
2025-06-21 02:15:41 +02:00
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
2025-06-20 03:27:36 +02:00
github.com/gookit/color v1.5.4 // indirect
2025-06-21 02:15:41 +02:00
github.com/onsi/ginkgo/v2 v2.9.5 // indirect
github.com/quic-go/qpack v0.5.1 // indirect
2025-06-20 16:10:38 +02:00
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
2025-06-20 03:27:36 +02:00
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
2025-06-21 02:15:41 +02:00
go.uber.org/mock v0.5.0 // indirect
golang.org/x/mod v0.25.0 // indirect
golang.org/x/net v0.40.0 // indirect
golang.org/x/sync v0.15.0 // indirect
2025-06-20 03:27:36 +02:00
golang.org/x/sys v0.33.0 // indirect
golang.org/x/term v0.32.0 // indirect
2025-06-21 02:15:41 +02:00
golang.org/x/text v0.26.0 // indirect
golang.org/x/tools v0.33.0 // indirect
2025-06-20 03:27:36 +02:00
)