-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
73 lines (69 loc) · 2.86 KB
/
go.mod
File metadata and controls
73 lines (69 loc) · 2.86 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
module gitlab.com/music-library/music-api
go 1.18
require (
github.com/cosmtrek/air v1.41.0
github.com/go-co-op/gocron v1.19.0
github.com/go-task/task/v3 v3.22.0
github.com/gofiber/fiber/v2 v2.42.0
github.com/gofiber/websocket/v2 v2.1.4
github.com/gosimple/slug v1.13.1
github.com/icrowley/fake v0.0.0-20221112152111-d7b7e2276db2
github.com/mitchellh/gox v1.0.1
github.com/rs/xid v1.4.0
github.com/sirupsen/logrus v1.9.0
github.com/stretchr/testify v1.8.2
)
require (
github.com/Masterminds/semver/v3 v3.2.0 // indirect
github.com/corpix/uarand v0.0.0-20170723150923-031be390f409 // indirect
github.com/fasthttp/websocket v1.5.1 // indirect
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gosimple/unidecode v1.0.1 // indirect
github.com/joho/godotenv v1.5.1 // indirect
github.com/mattn/go-zglob v0.0.4 // indirect
github.com/mitchellh/hashstructure/v2 v2.0.2 // indirect
github.com/philhofer/fwd v1.1.1 // indirect
github.com/radovskyb/watcher v1.0.7 // indirect
github.com/robfig/cron/v3 v3.0.1 // indirect
github.com/sajari/fuzzy v1.0.0 // indirect
github.com/savsgio/dictpool v0.0.0-20221023140959-7bf2e61cea94 // indirect
github.com/savsgio/gotils v0.0.0-20220530130905-52f3993e8d6d // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/tinylib/msgp v1.1.6 // indirect
golang.org/x/exp v0.0.0-20230212135524-a684f29349b6 // indirect
mvdan.cc/sh/v3 v3.6.0 // indirect
)
require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/creack/pty v1.1.18 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dhowden/tag v0.0.0-20220618230019-adf36e896086
github.com/dnephin/pflag v1.0.7 // indirect
github.com/fatih/color v1.14.1 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
github.com/hashicorp/go-version v1.0.0 // indirect
github.com/hmerritt/go-ngram v1.0.5
github.com/imdario/mergo v0.3.13 // indirect
github.com/klauspost/compress v1.15.9 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mitchellh/iochan v1.0.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.44.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
golang.org/x/mod v0.6.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.3.0 // indirect
golang.org/x/term v0.3.0 // indirect
golang.org/x/text v0.5.0
golang.org/x/tools v0.2.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gotest.tools/gotestsum v1.9.0
)