-
Notifications
You must be signed in to change notification settings - Fork 8
/
go.mod
56 lines (54 loc) · 2.35 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
module a4.io/blobstash
require (
a4.io/blobsfile v0.3.8
a4.io/gluapp v0.0.0-20200404171232-054f285d8e63
a4.io/gluarequire2 v0.0.0-20200222094423-7528d5a10bc1
a4.io/go/indieauth v1.0.3
a4.io/ssse v0.0.0-20181202155639-1949828a8689
github.com/alecthomas/chroma v0.7.3 // indirect
github.com/aws/aws-sdk-go v1.33.7
github.com/blevesearch/segment v0.9.0
github.com/carbocation/interpose v0.0.0-20161206215253-723534742ba3
github.com/dave/jennifer v1.4.0
github.com/dustin/go-humanize v1.0.0
github.com/e3b0c442/warp v0.6.1
github.com/evanphx/json-patch v4.5.0+incompatible
github.com/golang/protobuf v1.4.2 // indirect
github.com/golang/snappy v0.0.1
github.com/gorilla/context v1.1.1
github.com/gorilla/handlers v1.4.2
github.com/gorilla/mux v1.7.4
github.com/gorilla/sessions v1.2.0
github.com/hashicorp/golang-lru v0.5.4
github.com/inconshreveable/log15 v0.0.0-20200109203555-b30bc20e4fd1
github.com/klauspost/cpuid v1.3.1 // indirect
github.com/klauspost/reedsolomon v1.9.9 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/mmcloughlin/avo v0.0.0-20200523190732-4439b6b2c061 // indirect
github.com/mvdan/xurls v1.1.0 // indirect
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
github.com/reiver/go-porterstemmer v1.0.1
github.com/restic/chunker v0.3.0
github.com/robfig/cron v1.2.0
github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd
github.com/sirupsen/logrus v1.6.0 // indirect
github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d
github.com/unrolled/secure v1.0.8
github.com/vmihailenco/msgpack v4.0.4+incompatible
github.com/yuin/goldmark v1.1.33
github.com/yuin/gopher-lua v0.0.0-20200603152657-dc2b0ca8b37e
github.com/zpatrick/rbac v0.0.0-20180829190353-d2c4f050cf28
golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899
golang.org/x/net v0.0.0-20200707034311-ab3426394381 // indirect
golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae // indirect
golang.org/x/text v0.3.3 // indirect
golang.org/x/tools v0.0.0-20200717024301-6ddee64345a6 // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/protobuf v1.25.0 // indirect
gopkg.in/inconshreveable/log15.v2 v2.0.0-20200109203555-b30bc20e4fd1
gopkg.in/src-d/go-git.v4 v4.13.1
gopkg.in/yaml.v2 v2.3.0
willnorris.com/go/microformats v1.1.0
)
go 1.14