-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
33 lines (30 loc) · 1.06 KB
/
go.mod
File metadata and controls
33 lines (30 loc) · 1.06 KB
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
module github.com/paulgrammer/scraper
go 1.25.0
require (
github.com/go-rod/rod v0.116.2
github.com/google/uuid v1.6.0
github.com/hibiken/asynq v0.26.0
github.com/hibiken/asynqmon v0.7.2
github.com/jinzhu/configor v1.2.2
github.com/joho/godotenv v1.5.1
github.com/panjf2000/ants/v2 v2.11.5
github.com/redis/go-redis/v9 v9.14.1
)
require (
github.com/BurntSushi/toml v1.2.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/robfig/cron/v3 v3.0.1 // indirect
github.com/spf13/cast v1.10.0 // indirect
github.com/ysmood/fetchup v0.2.3 // indirect
github.com/ysmood/goob v0.4.0 // indirect
github.com/ysmood/got v0.40.0 // indirect
github.com/ysmood/gson v0.7.3 // indirect
github.com/ysmood/leakless v0.9.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.37.0 // indirect
golang.org/x/time v0.14.0 // indirect
google.golang.org/protobuf v1.36.10 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)