-
Notifications
You must be signed in to change notification settings - Fork 8
/
go.mod
37 lines (33 loc) · 1.25 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
module github.com/and3rson/raid
go 1.18
require (
github.com/andybalholm/cascadia v1.3.1
github.com/caarlos0/env/v6 v6.9.1
github.com/goccy/go-yaml v1.9.5
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/mattn/go-sqlite3 v1.14.12
github.com/sirupsen/logrus v1.8.1
github.com/srwiley/oksvg v0.0.0-20220128195007-1f435e4c2b44
github.com/srwiley/rasterx v0.0.0-20220128185129-2efea2b9ea41
github.com/throttled/throttled/v2 v2.9.1
golang.org/x/net v0.0.0-20220412020605-290c469a71a5
)
require (
github.com/google/uuid v1.3.0 // indirect
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
)
require (
github.com/fatih/color v1.13.0 // indirect
github.com/felixge/httpsnoop v1.0.1 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/stretchr/testify v1.7.1 // indirect
golang.org/x/image v0.0.0-20211028202545-6944b10bf410
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect
)