-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
37 lines (34 loc) · 1.44 KB
/
go.mod
File metadata and controls
37 lines (34 loc) · 1.44 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/eightseventhreethree/go-gemini-api
require (
github.com/hashicorp/go-retryablehttp v0.7.8
github.com/shopspring/decimal v1.4.0
github.com/stretchr/testify v1.10.0
golang.org/x/tools/gopls v0.21.1
)
require (
github.com/BurntSushi/toml v1.5.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/camelcase v1.0.0 // indirect
github.com/fatih/gomodifytags v1.17.1-0.20250423142747-f3939df9aa3c // indirect
github.com/fatih/structtag v1.2.0 // indirect
github.com/fsnotify/fsnotify v1.9.0 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/google/jsonschema-go v0.3.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/modelcontextprotocol/go-sdk v0.8.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
golang.org/x/exp/typeparams v0.0.0-20251023183803-a4bb9ffd2546 // indirect
golang.org/x/mod v0.30.0 // indirect
golang.org/x/sync v0.18.0 // indirect
golang.org/x/sys v0.38.0 // indirect
golang.org/x/telemetry v0.0.0-20251111182119-bc8e575c7b54 // indirect
golang.org/x/text v0.31.0 // indirect
golang.org/x/tools v0.39.1-0.20260109155911-b69ac100ecb7 // indirect
golang.org/x/vuln v1.1.4 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
honnef.co/go/tools v0.7.0-0.dev.0.20251022135355-8273271481d0 // indirect
mvdan.cc/gofumpt v0.8.0 // indirect
mvdan.cc/xurls/v2 v2.6.0 // indirect
)
go 1.25