-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathgo.mod
29 lines (26 loc) · 915 Bytes
/
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
module github.com/juju/txn/v3
go 1.18
require (
github.com/juju/clock v1.0.0
github.com/juju/errors v1.0.0
github.com/juju/loggo v1.0.0
github.com/juju/lru v1.0.0
github.com/juju/mgo/v3 v3.0.2
github.com/juju/testing v1.0.1
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
)
require (
github.com/juju/collections v1.0.0 // indirect
github.com/juju/mgo/v2 v2.0.2 // indirect
github.com/juju/retry v1.0.0 // indirect
github.com/juju/utils/v3 v3.0.0 // indirect
github.com/juju/version/v2 v2.0.0 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/rogpeppe/go-internal v1.8.1 // indirect
github.com/xdg-go/stringprep v1.0.3 // indirect
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
golang.org/x/net v0.0.0-20220708220712-1185a9018129 // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)