-
Notifications
You must be signed in to change notification settings - Fork 7
/
go.mod
37 lines (34 loc) · 1.56 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
module github.com/juju/juju-restore
go 1.17
require (
github.com/juju/ansiterm v0.0.0-20210929141451-8b71cc96ebdc
github.com/juju/clock v0.0.0-20220203021603-d9deb868a28a
github.com/juju/cmd/v3 v3.0.0-20220202061353-b1cc80b193b0
github.com/juju/collections v0.0.0-20220203020748-febd7cad8a7a
github.com/juju/errors v0.0.0-20220203013757-bd733f3c86b9
github.com/juju/gnuflag v0.0.0-20171113085948-2ce1bb71843d
github.com/juju/loggo v0.0.0-20210728185423-eebad3a902c4
github.com/juju/mgo/v2 v2.0.0-20220111072304-f200228f1090
github.com/juju/replicaset/v2 v2.0.1-0.20220207005755-f1b225b4be6e
github.com/juju/testing v0.0.0-20220203020004-a0ff61f03494
github.com/juju/utils/v3 v3.0.0-20220203023959-c3fbc78a33b0
github.com/juju/version/v2 v2.0.0-20220204124744-fc9915e3d935
github.com/kr/pretty v0.2.1
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
gopkg.in/retry.v1 v1.0.3
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/frankban/quicktest v1.10.0 // indirect
github.com/juju/retry v0.0.0-20220204093819-62423bf33287 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lunixbochs/vtclean v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.10 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/xdg-go/stringprep v1.0.2 // indirect
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f // indirect
golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)