-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
39 lines (36 loc) · 1.36 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
module github.com/opencars/wanted
go 1.19
require (
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
github.com/emirpasic/gods v1.18.1
github.com/go-ozzo/ozzo-validation/v4 v4.3.0
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/jmoiron/sqlx v1.3.5
github.com/lib/pq v1.10.7
github.com/opencars/govdata v0.1.2
github.com/opencars/grpc v0.5.22
github.com/opencars/schema v0.0.13
github.com/opencars/seedwork v0.0.3
github.com/opencars/translit v0.1.2
github.com/stretchr/testify v1.8.0
google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef
google.golang.org/grpc v1.51.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rs/zerolog v1.28.0 // indirect
github.com/satori/go.uuid v1.2.0 // indirect
golang.org/x/net v0.0.0-20221014081412-f15817d10f9b // indirect
golang.org/x/sys v0.0.0-20221013171732-95e765b1cc43 // indirect
golang.org/x/text v0.4.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)