forked from alaingilbert/ogame
-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
50 lines (47 loc) · 2.02 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
43
44
45
46
47
48
49
50
module github.com/alaingilbert/ogame
go 1.18
require (
github.com/PuerkitoBio/goquery v1.5.1
github.com/alaingilbert/clockwork v0.1.1-0.20220821091847-24a25c94a5fe
github.com/dustin/go-humanize v1.0.0
github.com/go-errors/errors v1.0.1
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible
github.com/hashicorp/go-version v1.2.0
github.com/labstack/echo/v4 v4.9.0
github.com/magiconair/properties v1.8.1
github.com/martinlindhe/base36 v1.1.1
github.com/olekukonko/tablewriter v0.0.4
github.com/orirawlings/persistent-cookiejar v0.3.0
github.com/pkg/errors v0.9.1
github.com/pquerna/otp v1.2.0
github.com/stretchr/testify v1.8.0
github.com/yuin/gopher-lua v0.0.0-20191220021717-ab39c6098bdb
golang.org/x/net v0.26.0
golang.org/x/text v0.16.0
gopkg.in/abiosoft/ishell.v2 v2.0.0
gopkg.in/urfave/cli.v2 v2.0.0-20180128182452-d3ae77c26ac8
)
require (
github.com/abiosoft/ishell v2.0.0+incompatible // indirect
github.com/abiosoft/readline v0.0.0-20180607040430-155bce2042db // indirect
github.com/andybalholm/cascadia v1.1.0 // indirect
github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.9.0 // indirect
github.com/flynn-archive/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/labstack/gommon v0.3.1 // 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.7 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
go4.org v0.0.0-20200411211856-f5505b9728dd // indirect
golang.org/x/crypto v0.24.0 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect
gopkg.in/retry.v1 v1.0.3 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)