-
Notifications
You must be signed in to change notification settings - Fork 14
/
go.mod
37 lines (34 loc) · 1.35 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
module github.com/zsmhub/workweixin
go 1.18
require (
github.com/ChimeraCoder/gojson v1.1.0
github.com/PuerkitoBio/goquery v1.7.1
github.com/cenkalti/backoff/v4 v4.1.1
github.com/go-redis/redis/v8 v8.10.0
github.com/google/uuid v1.3.0
github.com/iancoleman/strcase v0.2.0
github.com/labstack/echo/v4 v4.1.16
github.com/miku/zek v0.1.11
github.com/pkg/errors v0.9.1
github.com/valyala/fasthttp v1.26.0
)
require (
github.com/andybalholm/brotli v1.0.2 // indirect
github.com/andybalholm/cascadia v1.2.0 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/klauspost/compress v1.12.2 // indirect
github.com/labstack/gommon v0.3.0 // indirect
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.1.0 // indirect
go.opentelemetry.io/otel v0.20.0 // indirect
go.opentelemetry.io/otel/metric v0.20.0 // indirect
go.opentelemetry.io/otel/trace v0.20.0 // indirect
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
golang.org/x/sys v0.0.0-20210514084401-e8d321eab015 // indirect
golang.org/x/text v0.3.6 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
)