-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
28 lines (25 loc) · 961 Bytes
/
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
module github.com/afosto/cli
go 1.18
require (
github.com/cenkalti/backoff/v4 v4.1.1
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/flosch/pongo2/v4 v4.0.2
github.com/gen2brain/dlgs v0.0.0-20210406143744-f512297a108e
github.com/google/uuid v1.2.0
github.com/gorilla/mux v1.8.0
github.com/leekchan/accounting v1.0.0
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.1.1
gopkg.in/yaml.v2 v2.2.8
)
require (
github.com/cockroachdb/apd v1.1.0 // indirect
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect
)