2021-01-25 14:23:00 +00:00
|
|
|
module github.com/RaaLabs/steward
|
|
|
|
|
2022-04-04 04:43:10 +00:00
|
|
|
go 1.18
|
2021-01-25 14:50:44 +00:00
|
|
|
|
2021-01-27 08:45:52 +00:00
|
|
|
require (
|
2023-01-08 07:32:58 +00:00
|
|
|
github.com/fsnotify/fsnotify v1.6.0
|
2022-06-22 07:04:53 +00:00
|
|
|
github.com/fxamacker/cbor/v2 v2.4.0
|
2022-12-26 09:12:45 +00:00
|
|
|
github.com/gdamore/tcell/v2 v2.5.3
|
2022-05-06 05:47:12 +00:00
|
|
|
github.com/go-playground/validator/v10 v10.10.1
|
2022-06-09 03:29:41 +00:00
|
|
|
github.com/google/uuid v1.3.0
|
2021-04-13 09:28:52 +00:00
|
|
|
github.com/hpcloud/tail v1.0.0
|
2022-05-16 05:15:38 +00:00
|
|
|
github.com/jinzhu/copier v0.3.5
|
2022-12-26 09:12:45 +00:00
|
|
|
github.com/klauspost/compress v1.15.13
|
2022-06-16 22:39:15 +00:00
|
|
|
github.com/nats-io/nats-server/v2 v2.8.4
|
2022-12-26 09:12:45 +00:00
|
|
|
github.com/nats-io/nats.go v1.22.1
|
|
|
|
github.com/pelletier/go-toml/v2 v2.0.6
|
2022-06-18 05:35:59 +00:00
|
|
|
github.com/pkg/profile v1.6.0
|
2022-12-26 09:12:45 +00:00
|
|
|
github.com/prometheus/client_golang v1.14.0
|
|
|
|
github.com/rivo/tview v0.0.0-20221221172820-02e38ea9604c
|
2022-06-22 07:09:02 +00:00
|
|
|
go.etcd.io/bbolt v1.3.6
|
2023-01-11 05:09:42 +00:00
|
|
|
golang.org/x/exp v0.0.0-20230108222341-4b8118a2686a
|
2022-05-31 07:44:01 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2022-04-04 04:43:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2022-12-26 09:12:45 +00:00
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
2022-04-04 04:43:10 +00:00
|
|
|
github.com/gdamore/encoding v1.0.0 // indirect
|
2022-05-06 05:47:12 +00:00
|
|
|
github.com/go-playground/locales v0.14.0 // indirect
|
|
|
|
github.com/go-playground/universal-translator v0.18.0 // indirect
|
2022-06-22 03:19:05 +00:00
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
2022-05-06 05:47:12 +00:00
|
|
|
github.com/leodido/go-urn v1.2.1 // indirect
|
2022-04-04 04:43:10 +00:00
|
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
2022-12-26 09:12:45 +00:00
|
|
|
github.com/mattn/go-runewidth v0.0.14 // indirect
|
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
2022-04-04 04:43:10 +00:00
|
|
|
github.com/minio/highwayhash v1.0.2 // indirect
|
2022-06-16 22:39:15 +00:00
|
|
|
github.com/nats-io/jwt/v2 v2.2.1-0.20220330180145-442af02fd36a // indirect
|
2022-04-04 04:43:10 +00:00
|
|
|
github.com/nats-io/nkeys v0.3.0 // indirect
|
|
|
|
github.com/nats-io/nuid v1.0.1 // indirect
|
2022-12-26 09:12:45 +00:00
|
|
|
github.com/prometheus/client_model v0.3.0 // indirect
|
|
|
|
github.com/prometheus/common v0.39.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.9.0 // indirect
|
|
|
|
github.com/rivo/uniseg v0.4.3 // indirect
|
2022-04-04 04:43:10 +00:00
|
|
|
github.com/x448/float16 v0.8.4 // indirect
|
2022-12-26 09:12:45 +00:00
|
|
|
golang.org/x/crypto v0.4.0 // indirect
|
|
|
|
golang.org/x/sys v0.3.0 // indirect
|
|
|
|
golang.org/x/term v0.3.0 // indirect
|
|
|
|
golang.org/x/text v0.5.0 // indirect
|
2022-06-16 22:39:15 +00:00
|
|
|
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
|
2022-12-26 09:12:45 +00:00
|
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
2021-08-18 10:16:21 +00:00
|
|
|
gopkg.in/fsnotify.v1 v1.4.7 // indirect
|
|
|
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
2021-01-27 08:45:52 +00:00
|
|
|
)
|