-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
50 lines (47 loc) · 2.01 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
module github.com/charlieegan3/tool-airtable-contacts
go 1.19
require (
github.com/Jeffail/gabs/v2 v2.6.1
github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883
github.com/antchfx/xmlquery v1.3.6
github.com/cenkalti/backoff/v4 v4.1.1
github.com/charlieegan3/special-days v0.0.0-20210701231319-175bc74510e3
github.com/charlieegan3/toolbelt v0.0.0-20221012131106-c0a8a7937c75
github.com/disintegration/imaging v1.6.2
github.com/emersion/go-vcard v0.0.0-20210521075357-3445b9171995
github.com/gomarkdown/markdown v0.0.0-20220627144906-e9a81102ebeb
github.com/google/martian v2.1.0+incompatible
github.com/gorilla/mux v1.8.0
github.com/gregdel/pushover v1.1.0
github.com/maxatome/go-testdeep v1.10.0
github.com/mehanizm/airtable v0.2.4
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.1.3
github.com/spf13/viper v1.13.0
)
require (
github.com/antchfx/xpath v1.1.10 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
github.com/sergi/go-diff v1.2.0 // indirect
github.com/spf13/afero v1.8.2 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.4.1 // indirect
github.com/vjeantet/eastertime v1.0.0 // indirect
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d // indirect
golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 // indirect
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)