forked from cloudfoundry/notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
49 lines (46 loc) · 2.22 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
module github.com/cloudfoundry-incubator/notifications
go 1.20
require (
github.com/DATA-DOG/go-sqlmock v0.0.0-20180221072120-a6b4b164c6d1
github.com/PuerkitoBio/goquery v1.8.1
github.com/chrj/smtpd v0.0.0-20140720195347-c6fe39d4dcdd
github.com/go-sql-driver/mysql v1.4.1
github.com/golang-jwt/jwt/v5 v5.0.0
github.com/gorilla/mux v1.6.2
github.com/onsi/ginkgo/v2 v2.9.4
github.com/onsi/gomega v1.27.6
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 v0.0.0-20150428205713-c88fa6d6c4d2
github.com/rcrowley/go-metrics v0.0.0-20180125231941-8732c616f529
github.com/rubenv/sql-migrate v0.0.0-20150713140751-53184e1edfb4
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.1
)
require (
bitbucket.org/chrj/smtpd v0.0.0-20170817182725-9ddcdbda0f7a // indirect
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/dgrijalva/jwt-go v3.2.1-0.20210802184156-9742bd7fca1c+incompatible // indirect
github.com/go-logr/logr v1.2.4 // indirect
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/lib/pq v1.10.9 // indirect
github.com/mattn/go-sqlite3 v1.14.16 // 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.14.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/text v0.12.0 // indirect
golang.org/x/tools v0.8.0 // indirect
google.golang.org/appengine v1.6.1 // indirect
gopkg.in/alexcesaro/quotedprintable.v1 v1.0.0-20141111223934-dacd4576c5aa // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)