-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
31 lines (28 loc) · 1.15 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
module github.com/cube2222/octosql-plugin-postgres
require (
github.com/cube2222/octosql v0.7.3
github.com/gofrs/uuid v4.0.0+incompatible
github.com/jackc/pgx v3.6.2+incompatible
)
require (
github.com/awalterschulze/gographviz v2.0.3+incompatible // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/dgraph-io/ristretto v0.1.0 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/golang/glog v1.0.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/btree v1.1.1 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/oklog/ulid/v2 v2.0.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/tidwall/btree v1.3.1 // indirect
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
golang.org/x/net v0.0.0-20220531201128-c960675eff93 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20220602131408-e326c6e8e9c8 // indirect
google.golang.org/grpc v1.47.0 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
go 1.18