mirror of
https://github.com/postmannen/ctrl.git
synced 2024-12-14 12:37:31 +00:00
55 lines
2.1 KiB
Modula-2
55 lines
2.1 KiB
Modula-2
module github.com/RaaLabs/steward
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/fsnotify/fsnotify v1.6.0
|
|
github.com/fxamacker/cbor/v2 v2.4.0
|
|
github.com/gdamore/tcell/v2 v2.6.0
|
|
github.com/go-playground/validator/v10 v10.10.1
|
|
github.com/google/uuid v1.3.0
|
|
github.com/hpcloud/tail v1.0.0
|
|
github.com/jinzhu/copier v0.3.5
|
|
github.com/klauspost/compress v1.16.3
|
|
github.com/nats-io/nats-server/v2 v2.8.4
|
|
github.com/nats-io/nats.go v1.25.0
|
|
github.com/pelletier/go-toml/v2 v2.0.7
|
|
github.com/pkg/profile v1.7.0
|
|
github.com/prometheus/client_golang v1.14.0
|
|
github.com/rivo/tview v0.0.0-20230330183452-5796b0cd5c1f
|
|
go.etcd.io/bbolt v1.3.7
|
|
golang.org/x/exp v0.0.0-20230321023759-10a507213a29
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/felixge/fgprof v0.9.3 // indirect
|
|
github.com/gdamore/encoding v1.0.0 // indirect
|
|
github.com/go-playground/locales v0.14.0 // indirect
|
|
github.com/go-playground/universal-translator v0.18.0 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/google/pprof v0.0.0-20230323073829-e72429f035bd // indirect
|
|
github.com/leodido/go-urn v1.2.1 // indirect
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
|
github.com/mattn/go-runewidth v0.0.14 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
|
github.com/minio/highwayhash v1.0.2 // indirect
|
|
github.com/nats-io/jwt/v2 v2.2.1-0.20220330180145-442af02fd36a // indirect
|
|
github.com/nats-io/nkeys v0.4.4 // indirect
|
|
github.com/nats-io/nuid v1.0.1 // indirect
|
|
github.com/prometheus/client_model v0.3.0 // indirect
|
|
github.com/prometheus/common v0.42.0 // indirect
|
|
github.com/prometheus/procfs v0.9.0 // indirect
|
|
github.com/rivo/uniseg v0.4.4 // indirect
|
|
github.com/x448/float16 v0.8.4 // indirect
|
|
golang.org/x/crypto v0.7.0 // indirect
|
|
golang.org/x/sys v0.6.0 // indirect
|
|
golang.org/x/term v0.6.0 // indirect
|
|
golang.org/x/text v0.8.0 // indirect
|
|
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
|
|
google.golang.org/protobuf v1.30.0 // indirect
|
|
gopkg.in/fsnotify.v1 v1.4.7 // indirect
|
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
|
)
|