-
Notifications
You must be signed in to change notification settings - Fork 17
/
go.mod
34 lines (31 loc) · 1.19 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
module github.com/kolide/kit
go 1.21
require (
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc
github.com/go-kit/kit v0.7.0
github.com/google/uuid v1.3.0
github.com/jmoiron/sqlx v0.0.0-20180406164412-2aeb6a910c2b
github.com/oklog/ulid v0.3.0
github.com/opencensus-integrations/ocsql v0.1.1
github.com/pkg/errors v0.8.0
github.com/stretchr/testify v1.2.1
go.opencensus.io v0.22.1
google.golang.org/grpc v1.56.3
)
require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/go-logfmt/logfmt v0.3.0 // indirect
github.com/go-sql-driver/mysql v1.4.1 // indirect
github.com/go-stack/stack v1.7.0 // indirect
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 // indirect
github.com/lib/pq v1.0.0 // indirect
github.com/mattn/go-sqlite3 v1.10.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
google.golang.org/protobuf v1.33.0 // indirect
)