forked from kostyay/gorm-opentelemetry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
25 lines (22 loc) · 775 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
module github.com/MouseHatGames/gorm-opentelemetry
go 1.18
require (
github.com/stretchr/testify v1.7.1
go.opentelemetry.io/contrib v0.19.0
go.opentelemetry.io/otel v1.6.3
go.opentelemetry.io/otel/sdk v1.6.3
go.opentelemetry.io/otel/trace v1.6.3
gorm.io/driver/sqlite v1.1.4
gorm.io/gorm v1.21.6
)
require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.2 // indirect
github.com/mattn/go-sqlite3 v1.14.5 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)