-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
29 lines (25 loc) · 859 Bytes
/
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
module goDB
go 1.20
require (
github.com/99designs/gqlgen v0.17.30
github.com/google/btree v1.1.2
)
require (
github.com/gorilla/websocket v1.5.0 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.1 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
)
require (
github.com/agnivade/levenshtein v1.1.1 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/jcelliott/lumber v0.0.0-20160324203708-dd349441af25
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/urfave/cli/v2 v2.24.4 // indirect
github.com/vektah/gqlparser/v2 v2.5.1
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/mod v0.8.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/tools v0.6.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)