2019-12-24 02:14:52 +00:00
|
|
|
module github.com/authelia/authelia
|
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
|
2019-10-28 22:54:04 +00:00
|
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
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-05-23 23:01:19 +00:00
|
|
|
github.com/fasthttp/router v1.3.12
|
2021-04-30 01:57:33 +00:00
|
|
|
github.com/fasthttp/session/v2 v2.3.2
|
2021-05-31 01:15:05 +00:00
|
|
|
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
|
2021-04-06 02:19:20 +00:00
|
|
|
github.com/go-ldap/ldap/v3 v3.3.0
|
2021-04-01 09:53:47 +00:00
|
|
|
github.com/go-sql-driver/mysql v1.6.0
|
2021-02-22 09:33:17 +00:00
|
|
|
github.com/golang/mock v1.5.0
|
2021-03-25 22:04:32 +00:00
|
|
|
github.com/jackc/pgx/v4 v4.11.0
|
2021-05-04 22:06:05 +00:00
|
|
|
github.com/mattn/go-sqlite3 v2.0.3+incompatible
|
|
|
|
github.com/ory/fosite v0.39.0
|
2021-05-09 15:59:50 +00:00
|
|
|
github.com/otiai10/copy v1.6.0
|
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-02-22 04:47:07 +00:00
|
|
|
github.com/spf13/cobra v1.1.3
|
2020-08-03 23:07:38 +00:00
|
|
|
github.com/spf13/viper v1.7.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-05-23 23:01:19 +00:00
|
|
|
github.com/valyala/fasthttp v1.24.0
|
2021-04-01 21:32:57 +00:00
|
|
|
golang.org/x/text v0.3.6
|
2021-05-04 22:06:05 +00:00
|
|
|
gopkg.in/square/go-jose.v2 v2.5.1
|
2021-01-31 03:18:46 +00:00
|
|
|
gopkg.in/yaml.v2 v2.4.0
|
2019-10-28 22:54:04 +00:00
|
|
|
)
|
2021-05-06 05:52:27 +00:00
|
|
|
|
2021-05-31 01:15:05 +00:00
|
|
|
replace (
|
|
|
|
github.com/dgrijalva/jwt-go => github.com/form3tech-oss/jwt-go v3.2.1+incompatible
|
|
|
|
github.com/mattn/go-sqlite3 v2.0.3+incompatible => github.com/mattn/go-sqlite3 v1.14.7
|
|
|
|
)
|