-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
42 lines (39 loc) · 1.76 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
module github.com/chrisruffalo/gudgeon
require (
github.com/GeertJohan/go.rice v1.0.1-0.20191102153406-d954009f7238
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect
github.com/akutz/sortfold v0.2.1
github.com/atrox/go-migrate-rice v1.0.1
github.com/cavaliercoder/grab v2.0.0+incompatible
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf
github.com/couchbase/go-slab v0.0.0-20150629231827-1f5f7f282713
github.com/daaku/go.zipexe v1.0.1 // indirect
github.com/fortytw2/leaktest v1.3.0
github.com/fsnotify/fsnotify v1.4.9
github.com/gin-gonic/gin v1.6.3
github.com/go-ole/go-ole v1.2.4 // indirect
github.com/go-playground/validator/v10 v10.3.0 // indirect
github.com/golang-migrate/migrate/v4 v4.12.2
github.com/google/uuid v1.1.2
github.com/jessevdk/go-flags v1.4.0
github.com/json-iterator/go v1.1.10
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
github.com/miekg/dns v1.1.31
github.com/mina86/unsafeConvert v0.0.0-20170228191759-4dde7f529f51
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/ryanuber/go-glob v1.0.0
github.com/shirou/gopsutil v2.20.8+incompatible
github.com/sirupsen/logrus v1.6.0
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/twmb/murmur3 v1.1.5
github.com/willf/bitset v1.1.11 // indirect
github.com/willf/bloom v2.0.3+incompatible
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect
golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect
golang.org/x/sys v0.0.0-20200831180312-196b9ba8737a // indirect
gopkg.in/yaml.v2 v2.3.0
)
replace github.com/mattn/go-sqlite3 => github.com/mattn/go-sqlite3 v1.14.2
go 1.14