-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgo.mod
executable file
·42 lines (38 loc) · 1.31 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
38
39
40
41
42
module launchbot
go 1.19
require (
github.com/rs/zerolog v1.29.1
gopkg.in/telebot.v3 v3.1.3
)
require (
github.com/deckarep/golang-set v1.8.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/jonas-p/go-shp v0.1.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
github.com/mingrammer/commonregex v1.0.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/robfig/cron/v3 v3.0.1 // indirect
golang.org/x/image v0.2.0 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/sync v0.1.0 // indirect
gonum.org/v1/gonum v0.12.0 // indirect
gopkg.in/neurosnap/sentences.v1 v1.0.7 // indirect
)
require (
github.com/bradfitz/latlong v0.0.0-20170410180902-f3db6d0dff40
github.com/dustin/go-humanize v1.0.1
github.com/go-co-op/gocron v1.22.1
github.com/go-resty/resty/v2 v2.7.0
github.com/hako/durafmt v0.0.0-20210608085754-5c1018a4e16b
github.com/jayco/go-emoji-flag v0.0.0-20190810054606-01604da018da
github.com/jdkato/prose/v2 v2.0.0
github.com/mattn/go-sqlite3 v1.14.16 // indirect
github.com/procyon-projects/chrono v1.1.2
golang.org/x/exp v0.0.0-20230321023759-10a507213a29
golang.org/x/sys v0.7.0
golang.org/x/time v0.3.0
gorm.io/driver/sqlite v1.5.0
gorm.io/gorm v1.25.0
)