-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
45 lines (42 loc) · 1.68 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
module github.com/dmwm/dbs2go
go 1.20
require (
github.com/dmwm/cmsauth v0.0.0-20230224144745-c57dbeca74a3
github.com/go-playground/validator/v10 v10.11.2
github.com/google/uuid v1.3.0
github.com/gorilla/csrf v1.7.1
github.com/gorilla/mux v1.8.0
github.com/graph-gophers/graphql-go v1.5.0
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
github.com/mattn/go-oci8 v0.1.1
github.com/mattn/go-sqlite3 v1.14.16
github.com/prometheus/procfs v0.9.0
github.com/r3labs/diff/v3 v3.0.1
github.com/shirou/gopsutil v3.21.11+incompatible
github.com/ulule/limiter/v3 v3.11.0
github.com/vkuznet/auth-proxy-server/logging v0.0.0-20230224155500-18f9e3f9c368
github.com/vkuznet/x509proxy v0.0.0-20210801171832-e47b94db99b6
golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2
golang.org/x/exp/errors v0.0.0-20230224173230-c95f2b4c22f2
gopkg.in/rana/ora.v4 v4.1.15
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/gorilla/securecookie v1.1.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/lestrrat-go/strftime v1.0.6 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/tklauser/go-sysconf v0.3.11 // indirect
github.com/tklauser/numcpus v0.6.0 // indirect
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/crypto v0.5.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/text v0.6.0 // indirect
)