Files
hetty/go.mod

49 lines
1.8 KiB
Modula-2
Raw Permalink Normal View History

2020-09-22 18:33:02 +02:00
module github.com/dstotijn/hetty
2019-11-17 09:54:15 +01:00
2025-01-13 23:15:18 +01:00
go 1.23
toolchain go1.23.4
2019-11-30 12:43:55 +01:00
2019-12-01 14:47:25 +01:00
require (
2022-01-21 11:45:54 +01:00
github.com/99designs/gqlgen v0.14.0
2022-02-27 17:56:24 +01:00
github.com/chromedp/chromedp v0.7.8
2022-01-21 11:45:54 +01:00
github.com/google/go-cmp v0.5.6
github.com/gorilla/mux v1.7.4
github.com/mitchellh/go-homedir v1.1.0
2022-01-21 11:45:54 +01:00
github.com/oklog/ulid v1.3.1
2022-02-28 12:50:09 +01:00
github.com/peterbourgon/ff/v3 v3.1.2
2022-02-28 15:31:16 +01:00
github.com/smallstep/truststore v0.11.0
2022-01-21 11:45:54 +01:00
github.com/vektah/gqlparser/v2 v2.2.0
2025-01-13 23:15:18 +01:00
go.etcd.io/bbolt v1.4.0-beta.0
2022-02-27 14:28:28 +01:00
go.uber.org/zap v1.21.0
2019-12-01 14:47:25 +01:00
)
2022-01-25 13:20:16 +01:00
require (
github.com/agnivade/levenshtein v1.1.0 // indirect
2022-02-27 17:56:24 +01:00
github.com/chromedp/cdproto v0.0.0-20220217222649-d8c14a5c6edf // indirect
github.com/chromedp/sysutil v1.0.0 // indirect
2022-01-25 13:20:16 +01:00
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
2022-02-27 17:56:24 +01:00
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/gobwas/ws v1.1.0 // indirect
2022-01-25 13:20:16 +01:00
github.com/gorilla/websocket v1.4.2 // indirect
github.com/hashicorp/golang-lru v0.5.1 // indirect
2022-02-27 17:56:24 +01:00
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/matryer/moq v0.2.5 // indirect
2022-01-25 13:20:16 +01:00
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/urfave/cli/v2 v2.1.1 // indirect
github.com/vektah/dataloaden v0.2.1-0.20190515034641-a19b9a6e7c9e // indirect
2022-02-27 14:28:28 +01:00
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/mod v0.4.2 // indirect
2025-01-13 23:15:18 +01:00
golang.org/x/sys v0.26.0 // indirect
2022-02-27 14:28:28 +01:00
golang.org/x/tools v0.1.5 // indirect
2022-01-25 13:20:16 +01:00
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
2022-02-27 14:28:28 +01:00
gopkg.in/yaml.v2 v2.2.8 // indirect
2022-02-28 15:31:16 +01:00
howett.net/plist v0.0.0-20181124034731-591f970eefbb // indirect
2022-01-25 13:20:16 +01:00
)