-
Notifications
You must be signed in to change notification settings - Fork 9
/
go.mod
49 lines (44 loc) · 1.56 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/opencars/alpr
go 1.19
require (
github.com/golang/mock v1.6.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/minio/minio-go v6.0.14+incompatible
github.com/nats-io/nats.go v1.20.0
github.com/openalpr/openalpr v2.3.0+incompatible
github.com/opencars/httputil v0.0.2
github.com/satori/go.uuid v1.2.0
github.com/stretchr/testify v1.8.1
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013
google.golang.org/grpc v1.36.0
gopkg.in/yaml.v2 v2.4.0
)
require github.com/opencars/grpc v0.5.0
require (
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
github.com/go-ozzo/ozzo-validation/v4 v4.3.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/go-ini/ini v1.67.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/nats-io/nats-server/v2 v2.9.3 // indirect
github.com/nats-io/nkeys v0.3.0 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/opencars/seedwork v0.0.2
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rs/zerolog v1.28.0 // indirect
golang.org/x/crypto v0.3.0 // indirect
golang.org/x/net v0.2.0 // indirect
golang.org/x/sys v0.2.0 // indirect
golang.org/x/text v0.4.0 // indirect
google.golang.org/protobuf v1.28.1
gopkg.in/yaml.v3 v3.0.1 // indirect
)