2019-07-31 09:59:57 +00:00
|
|
|
module git.cacert.org/cacert-boardvoting
|
|
|
|
|
2022-05-09 16:06:11 +00:00
|
|
|
go 1.18
|
2020-04-26 11:16:22 +00:00
|
|
|
|
2019-07-31 09:59:57 +00:00
|
|
|
require (
|
2021-02-28 17:25:17 +00:00
|
|
|
github.com/Masterminds/sprig/v3 v3.2.2
|
2022-05-09 16:06:11 +00:00
|
|
|
github.com/golang-migrate/migrate/v4 v4.15.2
|
|
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
|
|
github.com/gorilla/csrf v1.7.1
|
2021-01-09 14:49:19 +00:00
|
|
|
github.com/gorilla/sessions v1.2.1
|
2021-02-28 17:25:17 +00:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
2021-03-14 17:10:51 +00:00
|
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
2021-01-09 14:49:19 +00:00
|
|
|
github.com/huandu/xstrings v1.3.2 // indirect
|
2021-03-14 17:10:51 +00:00
|
|
|
github.com/imdario/mergo v0.3.12 // indirect
|
2022-05-09 16:06:11 +00:00
|
|
|
github.com/jmoiron/sqlx v1.3.5
|
|
|
|
github.com/johejo/golang-migrate-extra v0.0.0-20211005021153-c17dd75f8b4a
|
|
|
|
github.com/mattn/go-sqlite3 v1.14.12
|
|
|
|
github.com/mitchellh/copystructure v1.2.0 // indirect
|
2021-03-14 17:10:51 +00:00
|
|
|
github.com/sirupsen/logrus v1.8.1
|
2022-05-09 16:06:11 +00:00
|
|
|
github.com/vearutop/statigz v1.1.8
|
|
|
|
golang.org/x/crypto v0.0.0-20220507011949-2cf3adece122 // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect
|
2019-07-31 09:59:57 +00:00
|
|
|
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
|
2022-03-21 11:12:09 +00:00
|
|
|
gopkg.in/mail.v2 v2.3.1
|
2021-01-09 14:49:19 +00:00
|
|
|
gopkg.in/yaml.v2 v2.4.0
|
2019-07-31 09:59:57 +00:00
|
|
|
)
|
2022-03-21 11:12:09 +00:00
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/Masterminds/goutils v1.1.1 // indirect
|
|
|
|
github.com/Masterminds/semver/v3 v3.1.1 // indirect
|
2022-05-09 16:06:11 +00:00
|
|
|
github.com/andybalholm/brotli v1.0.4 // indirect
|
2022-03-21 11:12:09 +00:00
|
|
|
github.com/gorilla/securecookie v1.1.1 // indirect
|
2022-05-09 16:06:11 +00:00
|
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
2022-03-21 11:12:09 +00:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2022-05-09 16:06:11 +00:00
|
|
|
github.com/shopspring/decimal v1.3.1 // indirect
|
|
|
|
github.com/spf13/cast v1.4.1 // indirect
|
|
|
|
go.uber.org/atomic v1.9.0 // indirect
|
2022-03-21 11:12:09 +00:00
|
|
|
)
|