-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathgo.mod
50 lines (47 loc) · 2.16 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
module github.com/cloudfoundry-incubator/notifications
go 1.21
toolchain go1.24.1
require (
github.com/DATA-DOG/go-sqlmock v1.5.2
github.com/PuerkitoBio/goquery v1.10.2
github.com/chrj/smtpd v0.0.0-20140720195347-c6fe39d4dcdd
github.com/go-sql-driver/mysql v1.9.1
github.com/golang-jwt/jwt/v5 v5.2.1
github.com/gorilla/mux v1.8.1
github.com/onsi/ginkgo/v2 v2.23.0
github.com/onsi/gomega v1.36.2
github.com/pivotal-cf-experimental/rainmaker v0.0.0-20160401052143-d533d01b7c52
github.com/pivotal-cf-experimental/warrant v0.0.0-20211122194707-17385443920f
github.com/pivotal-cf/uaa-sso-golang v0.0.0-20141119184546-0b91e8ad4bb6
github.com/pivotal-golang/conceal v0.0.0-20141120010127-31656578115c
github.com/pivotal-golang/lager v2.0.0+incompatible
github.com/rcrowley/go-metrics v0.0.0-20180125231941-8732c616f529
github.com/rubenv/sql-migrate v1.7.1
github.com/ryanmoran/stack v0.0.0-20140916210556-3debe7a5953a
github.com/ryanmoran/viron v0.0.0-20150922192335-f3865b4826c8
gopkg.in/gomail.v1 v1.0.0-20150120141108-d7294067b867
gopkg.in/gorp.v1 v1.7.2
)
require (
bitbucket.org/chrj/smtpd v0.0.0-20170817182725-9ddcdbda0f7a // indirect
code.cloudfoundry.org/lager v2.0.0+incompatible // indirect
filippo.io/edwards25519 v1.1.0 // indirect
github.com/andybalholm/cascadia v1.3.3 // indirect
github.com/dgrijalva/jwt-go v3.2.1-0.20210802184156-9742bd7fca1c+incompatible // indirect
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
github.com/lib/pq v1.10.9 // indirect
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/ziutek/mymysql v1.5.4 // indirect
golang.org/x/net v0.35.0 // indirect
golang.org/x/sys v0.30.0 // indirect
golang.org/x/text v0.22.0 // indirect
golang.org/x/tools v0.30.0 // indirect
gopkg.in/alexcesaro/quotedprintable.v1 v1.0.0-20141111223934-dacd4576c5aa // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)