-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
34 lines (31 loc) · 1.11 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
module github.com/PF2M/Indigo
go 1.19
require (
github.com/NYTimes/gziphandler v1.1.1
github.com/badoux/checkmail v1.2.1
github.com/go-sql-driver/mysql v1.7.1
github.com/gorilla/csrf v1.7.1
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.5.0
github.com/kataras/go-sessions/v3 v3.3.1
github.com/lucasb-eyer/go-colorful v1.2.0
github.com/microcosm-cc/bluemonday v1.0.25
github.com/oschwald/geoip2-golang v1.8.0
github.com/russross/blackfriday/v2 v2.1.0
golang.org/x/crypto v0.11.0
)
require (
github.com/andybalholm/brotli v1.0.5 // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/css v1.0.0 // indirect
github.com/gorilla/securecookie v1.1.1 // indirect
github.com/klauspost/compress v1.16.3 // indirect
github.com/oschwald/maxminddb-golang v1.10.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sergi/go-diff v1.3.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.47.0 // indirect
golang.org/x/net v0.12.0 // indirect
golang.org/x/sys v0.10.0 // indirect
)