-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathgo.mod
27 lines (24 loc) · 1.08 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
module github.com/TheHackerDev/race-the-web
go 1.17
require (
github.com/fatih/color v1.0.0
github.com/gin-gonic/gin v1.1.5-0.20170702092826-d459835d2b07
github.com/naoina/toml v0.1.1
)
require (
github.com/gin-contrib/sse v0.0.0-20170109093832-22d885f9ecc7 // indirect
github.com/golang/protobuf v0.0.0-20170816001514-ab9f9a6dab16 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/mattn/go-colorable v0.0.8 // indirect
github.com/mattn/go-isatty v0.0.2 // indirect
github.com/naoina/go-stringutil v0.1.0 // indirect
github.com/stretchr/testify v1.7.1 // indirect
github.com/ugorji/go v0.0.0-20170620104852-5efa3251c7f7 // indirect
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/go-playground/validator.v8 v8.18.2 // indirect
gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7 // indirect
)