-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
30 lines (26 loc) · 873 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
29
30
module github.com/gotd/getdoc
go 1.23
toolchain go1.23.5
require (
github.com/PuerkitoBio/goquery v1.10.1
github.com/cenkalti/backoff/v4 v4.3.0
github.com/go-faster/errors v0.7.1
github.com/go-faster/sdk v0.18.0
github.com/stretchr/testify v1.10.0
go.uber.org/ratelimit v0.3.1
go.uber.org/zap v1.27.0
golang.org/x/sync v0.10.0
)
require (
github.com/andybalholm/cascadia v1.3.3 // indirect
github.com/benbjohnson/clock v1.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.opentelemetry.io/otel v1.33.0 // indirect
go.opentelemetry.io/otel/trace v1.33.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/net v0.33.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)