-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
28 lines (24 loc) · 798 Bytes
/
go.mod
File metadata and controls
28 lines (24 loc) · 798 Bytes
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/mmbros/quotes
go 1.18
require (
github.com/PuerkitoBio/goquery v1.8.0
github.com/google/go-cmp v0.5.8
github.com/mattn/go-sqlite3 v1.14.12
github.com/mmbros/flagx v0.1.1
github.com/mmbros/taskengine v0.4.0
github.com/pelletier/go-toml v1.9.5
github.com/stretchr/testify v1.7.1
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
)
require (
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba // indirect
)
require (
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jedib0t/go-pretty/v6 v6.3.1
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 // indirect
)