-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
54 lines (50 loc) · 2.1 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
module github.com/ds2-lab/infinistore
go 1.18
// replace github.com/mason-leap-lab/redeo => ../redeo
// replace github.com/mason-leap-lab/go-utils => ../go-utils
require (
github.com/ScottMansfield/nanolog v0.2.0
github.com/aws/aws-lambda-go v1.23.0
github.com/aws/aws-sdk-go v1.38.38
github.com/buraksezer/consistent v0.9.0
github.com/cespare/xxhash v1.1.0
github.com/dustin/go-humanize v1.0.0
github.com/gizak/termui/v3 v3.1.0
github.com/google/uuid v1.2.0
github.com/hidez8891/shm v0.0.0-20200313135933-0ec4df5f28c7
github.com/jordwest/mock-conn v0.0.0-20180617021051-4896c6bd1641
github.com/kelindar/binary v1.0.9
github.com/klauspost/reedsolomon v1.9.12
github.com/mason-leap-lab/go-utils v1.3.2
github.com/mason-leap-lab/redeo v1.1.12
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
github.com/onsi/ginkgo v1.16.4
github.com/onsi/gomega v1.16.0
github.com/orcaman/concurrent-map v1.0.0
github.com/zhangjyr/hashmap v1.0.2
)
require (
github.com/bsm/pool v0.8.1 // indirect
github.com/dchest/siphash v1.1.0 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/gookit/config/v2 v2.1.2 // indirect
github.com/gookit/goutil v0.5.2 // indirect
github.com/imdario/mergo v0.3.13 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/klauspost/cpuid/v2 v2.0.2 // indirect
github.com/kr/pretty v0.2.1 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/nsf/termbox-go v1.1.1 // indirect
github.com/nxadm/tail v1.4.8 // indirect
golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 // indirect
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
golang.org/x/text v0.3.6 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)