-
Notifications
You must be signed in to change notification settings - Fork 39
/
go.mod
22 lines (19 loc) · 867 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
module github.com/atlassian/go-sentry-api
go 1.13
require (
github.com/getsentry/sentry-go v0.29.0
github.com/pkg/errors v0.9.1 // indirect
github.com/stretchr/testify v1.9.0
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)
replace (
// The following dependencies contain vulnerabilities in the versions that
// dependencies are trying to import them as. The alternative to this is to
// add these libraries as direct dependencies, but to stop `go mod tidy`
// removing them we would need to import them somewhere in the code.
// See: https://github.com/golang/go/issues/37352
github.com/coreos/etcd => github.com/coreos/etcd v3.3.27+incompatible
github.com/gorilla/websocket => github.com/gorilla/websocket v1.4.2
github.com/labstack/echo/v4 => github.com/labstack/echo/v4 v4.2.0
golang.org/x/text => golang.org/x/text v0.18.0
)