-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
66 lines (62 loc) · 2.58 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
module github.com/blobcache/bpm
go 1.20
require (
github.com/blobcache/glfs v0.0.0-20230402152202-ca7f4b338c87
github.com/blobcache/webref v0.0.0-20220721200854-3984f8122fe5
github.com/brendoncarroll/go-exp v0.0.0-20230603171029-dab04b5d8918
github.com/brendoncarroll/go-state v0.0.0-20230603163727-234f9bec78f5
github.com/brendoncarroll/stdctx v0.0.0-20230325181752-a8a6ba46e3c1
github.com/gocolly/colly/v2 v2.1.0
github.com/google/go-github/v50 v50.2.0
github.com/itchyny/gojq v0.12.12
github.com/jmoiron/sqlx v1.3.5
github.com/mattn/go-sqlite3 v1.14.12
github.com/owlmessenger/owl v0.0.0-20221112191537-b16ab01d1dc9
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.6.1
github.com/stretchr/testify v1.8.4
go.uber.org/zap v1.24.0
golang.org/x/mod v0.8.0
golang.org/x/oauth2 v0.6.0
lukechampine.com/blake3 v1.1.7
)
require (
github.com/PuerkitoBio/goquery v1.5.1 // indirect
github.com/andybalholm/cascadia v1.2.0 // indirect
github.com/antchfx/htmlquery v1.2.3 // indirect
github.com/antchfx/xmlquery v1.2.4 // indirect
github.com/antchfx/xpath v1.1.8 // indirect
github.com/gobwas/glob v0.2.3 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/itchyny/timefmt-go v0.1.5 // indirect
github.com/kennygrant/sanitize v1.2.4 // indirect
github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca // indirect
github.com/temoto/robotstxt v1.1.1 // indirect
golang.org/x/text v0.9.0 // indirect
)
require (
github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8 // indirect
github.com/brendoncarroll/go-tai64 v0.0.0-20220726191612-c9e9c0704db4
github.com/cloudflare/circl v1.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/btree v1.1.2 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.10.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/crypto v0.9.0 // indirect
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1
golang.org/x/net v0.10.0 // indirect
golang.org/x/sync v0.2.0
golang.org/x/sys v0.8.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)