2021-08-11 01:04:35 +00:00
|
|
|
module github.com/authelia/authelia/v4
|
2019-10-28 22:54:04 +00:00
|
|
|
|
2021-02-21 23:07:06 +00:00
|
|
|
go 1.16
|
2019-10-28 22:54:04 +00:00
|
|
|
|
|
|
|
require (
|
2021-01-31 01:43:08 +00:00
|
|
|
github.com/DATA-DOG/go-sqlmock v1.5.0
|
2019-11-16 19:50:58 +00:00
|
|
|
github.com/Gurpartap/logrus-stack v0.0.0-20170710170904-89c00d8a28f4
|
2021-03-30 00:15:30 +00:00
|
|
|
github.com/Workiva/go-datastructures v1.0.53
|
2021-01-30 07:06:58 +00:00
|
|
|
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef
|
2019-11-30 16:49:52 +00:00
|
|
|
github.com/deckarep/golang-set v1.7.1
|
2021-01-30 08:49:12 +00:00
|
|
|
github.com/duosecurity/duo_api_golang v0.0.0-20201112143038-0e07e9f869e3
|
2019-11-16 19:50:58 +00:00
|
|
|
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect
|
2021-09-10 11:32:28 +00:00
|
|
|
github.com/fasthttp/router v1.4.3
|
2021-09-21 23:56:35 +00:00
|
|
|
github.com/fasthttp/session/v2 v2.4.3
|
2021-08-16 22:06:40 +00:00
|
|
|
github.com/go-ldap/ldap/v3 v3.4.1
|
2021-04-01 09:53:47 +00:00
|
|
|
github.com/go-sql-driver/mysql v1.6.0
|
2021-09-26 12:06:11 +00:00
|
|
|
github.com/golang-jwt/jwt/v4 v4.1.0
|
2021-06-12 08:21:21 +00:00
|
|
|
github.com/golang/mock v1.6.0
|
2021-07-13 00:56:33 +00:00
|
|
|
github.com/google/uuid v1.3.0
|
2021-07-24 20:05:07 +00:00
|
|
|
github.com/jackc/pgx/v4 v4.13.0
|
2021-10-03 10:55:55 +00:00
|
|
|
github.com/knadh/koanf v1.2.4
|
2021-09-30 23:58:33 +00:00
|
|
|
github.com/mattn/go-sqlite3 v2.0.3+incompatible
|
2021-09-15 01:43:33 +00:00
|
|
|
github.com/mitchellh/mapstructure v1.4.2
|
2021-05-31 01:31:02 +00:00
|
|
|
github.com/ory/fosite v0.40.2
|
2021-10-03 01:06:23 +00:00
|
|
|
github.com/ory/herodot v0.9.11
|
2021-05-09 15:59:50 +00:00
|
|
|
github.com/otiai10/copy v1.6.0
|
2021-07-10 04:56:33 +00:00
|
|
|
github.com/pkg/errors v0.9.1
|
2021-01-31 02:44:15 +00:00
|
|
|
github.com/pquerna/otp v1.3.0
|
2021-04-21 20:25:38 +00:00
|
|
|
github.com/simia-tech/crypt v0.5.0
|
2021-03-10 00:33:14 +00:00
|
|
|
github.com/sirupsen/logrus v1.8.1
|
2021-07-02 21:04:53 +00:00
|
|
|
github.com/spf13/cobra v1.2.1
|
2021-01-30 09:44:07 +00:00
|
|
|
github.com/stretchr/testify v1.7.0
|
2019-11-02 14:32:58 +00:00
|
|
|
github.com/tebeka/selenium v0.9.9
|
2019-10-28 22:54:04 +00:00
|
|
|
github.com/tstranex/u2f v1.0.0
|
2021-09-09 22:53:52 +00:00
|
|
|
github.com/valyala/fasthttp v1.30.0
|
2021-09-30 23:58:33 +00:00
|
|
|
golang.org/x/sys v0.0.0-20210902050250-f475640dd07b // indirect
|
2021-08-10 20:41:10 +00:00
|
|
|
golang.org/x/text v0.3.7
|
2021-06-05 23:06:19 +00:00
|
|
|
gopkg.in/square/go-jose.v2 v2.6.0
|
2021-01-31 03:18:46 +00:00
|
|
|
gopkg.in/yaml.v2 v2.4.0
|
2019-10-28 22:54:04 +00:00
|
|
|
)
|
2021-09-30 23:58:33 +00:00
|
|
|
|
|
|
|
replace github.com/mattn/go-sqlite3 v2.0.3+incompatible => github.com/mattn/go-sqlite3 v1.14.8
|