-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathgo.mod
61 lines (58 loc) · 2.7 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
57
58
59
60
61
module github.com/CanonicalLtd/serial-vault
go 1.18
require (
github.com/Masterminds/squirrel v1.2.0
github.com/alexkohler/nakedret v1.0.1 // indirect
github.com/client9/misspell v0.3.4 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/getsentry/sentry-go v0.8.0
github.com/golang-jwt/jwt/v5 v5.2.1
github.com/gorilla/csrf v1.0.3-0.20161122164500-69581736821c
github.com/gorilla/mux v1.7.4-0.20190701202633-d83b6ffe499a
github.com/jessevdk/go-flags v1.5.1-0.20210607101731-3927b71304df
github.com/juju/usso v0.0.0-20160418121039-5b79b358f4bb
github.com/lib/pq v1.10.9
github.com/mattn/go-sqlite3 v1.6.0
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
github.com/prometheus/client_golang v1.19.1
github.com/snapcore/snapd v0.0.0-20221025171519-3c05e535e5cf
golang.org/x/crypto v0.18.0
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
gopkg.in/errgo.v1 v1.0.0-20161222125816-442357a80af5
gopkg.in/macaroon.v1 v1.0.0-20170816141150-ab101776739e
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/alexkohler/nakedret v1.0.1 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/client9/misspell v0.3.4 // indirect
github.com/godbus/dbus v4.1.0+incompatible // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/gorilla/securecookie v1.1.1 // indirect
github.com/juju/loggo v0.0.0-20180524022052-584905176618 // indirect
github.com/juju/ratelimit v1.0.1 // indirect
github.com/juju/testing v0.0.0-20180920084828-472a3e8b2073 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
github.com/pingcap/errors v0.11.4 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/common v0.48.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/rogpeppe/go-internal v1.10.0 // indirect
github.com/snapcore/go-gettext v0.0.0-20191107141714-82bbea49e785 // indirect
github.com/stretchr/testify v1.4.0 // indirect
github.com/yohcop/openid-go v0.0.0-20170901155220-cfc72ed89575 // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/term v0.16.0 // indirect
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce // indirect
gopkg.in/retry.v1 v1.0.3 // indirect
gopkg.in/tomb.v2 v2.0.0-20161208151619-d5d1b5820637 // indirect
launchpad.net/gocheck v0.0.0-20140225173054-000000000087 // indirect
)