-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathgo.mod
More file actions
37 lines (33 loc) · 1.34 KB
/
go.mod
File metadata and controls
37 lines (33 loc) · 1.34 KB
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
module github.com/render-oss/render-mcp-server
go 1.26.0
require (
github.com/alicebob/miniredis/v2 v2.35.0
github.com/jackc/pgx/v5 v5.7.5
github.com/mark3labs/mcp-go v0.32.0
github.com/oapi-codegen/runtime v1.1.1
github.com/redis/go-redis/v9 v9.10.0
github.com/spf13/pflag v1.0.6
github.com/stretchr/testify v1.10.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/maxbrunsfeld/counterfeiter/v6 v6.11.2 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/spf13/cast v1.9.2 // indirect
github.com/stretchr/objx v0.5.2 // indirect
github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
github.com/yuin/gopher-lua v1.1.1 // indirect
golang.org/x/crypto v0.39.0 // indirect
golang.org/x/mod v0.25.0 // indirect
golang.org/x/sync v0.15.0 // indirect
golang.org/x/text v0.26.0 // indirect
golang.org/x/tools v0.33.0 // indirect
)
tool github.com/maxbrunsfeld/counterfeiter/v6