-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
52 lines (46 loc) · 1.96 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
module github.com/tbellembois/gochimitheque
go 1.20
// replace github.com/tbellembois/gochimitheque-utils => /home/thbellem/workspace/workspace_go/src/github.com/tbellembois/gochimitheque-utils
require (
github.com/BurntSushi/toml v1.3.2
github.com/casbin/casbin/v2 v2.77.2
github.com/dchest/authcookie v0.0.0-20190824115100-f900d2294c8e // indirect
github.com/dchest/passwordreset v0.0.0-20190826080013-4518b1f41006
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/doug-martin/goqu/v9 v9.18.0
github.com/gorilla/mux v1.8.0
github.com/jmoiron/sqlx v1.3.5
github.com/justinas/alice v1.2.0
github.com/mattn/go-sqlite3 v2.0.3+incompatible
github.com/nicksnyder/go-i18n/v2 v2.2.2
github.com/sirupsen/logrus v1.9.3
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
github.com/steambap/captcha v1.4.1
golang.org/x/crypto v0.14.0
golang.org/x/image v0.13.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0
)
require (
github.com/casbin/json-adapter/v2 v2.1.1
github.com/go-ldap/ldap/v3 v3.4.6
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/russross/blackfriday/v2 v2.1.0
github.com/tbellembois/gochimitheque-utils v0.0.0-20221125140514-6e4c4a07ea3b
)
require (
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
github.com/Joker/hpp v1.0.0 // indirect
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible // indirect
github.com/go-asn1-ber/asn1-ber v1.5.5 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/google/uuid v1.4.0 // indirect
github.com/tidwall/gjson v1.17.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
golang.org/x/net v0.10.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
replace gopkg.in/russross/blackfriday.v2 => github.com/russross/blackfriday/v2 v2.0.1