forked from Finb/bark-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
41 lines (37 loc) · 1.47 KB
/
go.mod
File metadata and controls
41 lines (37 loc) · 1.47 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
// +heroku goVersion go1.17
module github.com/finb/bark-server/v2
go 1.17
require (
github.com/go-sql-driver/mysql v1.6.0
github.com/gofiber/fiber/v2 v2.40.1
github.com/json-iterator/go v1.1.12
github.com/lithammer/shortuuid/v3 v3.0.7
github.com/mritd/logger v0.0.6
github.com/sideshow/apns2 v0.23.0
github.com/urfave/cli/v2 v2.23.5
go.etcd.io/bbolt v1.3.5
golang.org/x/net v0.0.0-20220906165146-f3363e06e74c
)
require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/golang-jwt/jwt/v4 v4.4.1 // indirect
github.com/google/uuid v1.2.0 // 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.16 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.41.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
go.uber.org/zap v1.20.0 // indirect
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
golang.org/x/text v0.3.7 // indirect
)