Skip to content

Commit 4747bf7

Browse files
authored
Update to Go 1.22, use go get -tool (#82)
1 parent 470f82a commit 4747bf7

File tree

14 files changed

+899
-1114
lines changed

14 files changed

+899
-1114
lines changed

_examples/golang-basics/go.mod

+52-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,65 @@
11
module golang-basics
22

3-
go 1.19
3+
go 1.22.12
4+
5+
toolchain go1.24.0
46

57
require (
68
github.com/go-chi/chi/v5 v5.2.1
79
github.com/google/uuid v1.6.0
8-
github.com/stretchr/testify v1.9.0
10+
github.com/stretchr/testify v1.10.0
911
)
1012

1113
require (
14+
dario.cat/mergo v1.0.1 // indirect
15+
github.com/Masterminds/goutils v1.1.1 // indirect
16+
github.com/Masterminds/semver/v3 v3.3.1 // indirect
17+
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
18+
github.com/Microsoft/go-winio v0.6.2 // indirect
19+
github.com/ProtonMail/go-crypto v1.1.5 // indirect
20+
github.com/cloudflare/circl v1.6.0 // indirect
21+
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
1222
github.com/davecgh/go-spew v1.1.1 // indirect
13-
github.com/kr/pretty v0.3.1 // indirect
23+
github.com/emirpasic/gods v1.18.1 // indirect
24+
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
25+
github.com/go-git/go-billy/v5 v5.6.2 // indirect
26+
github.com/go-git/go-git/v5 v5.13.2 // indirect
27+
github.com/golang-cz/textcase v1.2.1 // indirect
28+
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
29+
github.com/google/go-github v17.0.0+incompatible // indirect
30+
github.com/google/go-querystring v1.1.0 // indirect
31+
github.com/huandu/xstrings v1.5.0 // indirect
32+
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
33+
github.com/kevinburke/ssh_config v1.2.0 // indirect
34+
github.com/kr/fs v0.1.0 // indirect
35+
github.com/mitchellh/copystructure v1.2.0 // indirect
36+
github.com/mitchellh/reflectwalk v1.0.2 // indirect
37+
github.com/pjbgf/sha1cd v0.3.2 // indirect
38+
github.com/pkg/errors v0.9.1 // indirect
1439
github.com/pmezard/go-difflib v1.0.0 // indirect
15-
github.com/rogpeppe/go-internal v1.11.0 // indirect
16-
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
40+
github.com/posener/diff v0.0.1 // indirect
41+
github.com/posener/gitfs v1.2.2 // indirect
42+
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
43+
github.com/shopspring/decimal v1.4.0 // indirect
44+
github.com/shurcooL/httpfs v0.0.0-20230704072500-f1e31cf0ba5c // indirect
45+
github.com/skeema/knownhosts v1.3.1 // indirect
46+
github.com/spf13/cast v1.7.1 // indirect
47+
github.com/webrpc/gen-dart v0.1.1 // indirect
48+
github.com/webrpc/gen-golang v0.17.0 // indirect
49+
github.com/webrpc/gen-javascript v0.13.0 // indirect
50+
github.com/webrpc/gen-kotlin v0.1.0 // indirect
51+
github.com/webrpc/gen-openapi v0.15.0 // indirect
52+
github.com/webrpc/gen-typescript v0.16.3 // indirect
53+
github.com/webrpc/webrpc v0.23.2 // indirect
54+
github.com/xanzy/ssh-agent v0.3.3 // indirect
55+
golang.org/x/crypto v0.33.0 // indirect
56+
golang.org/x/mod v0.23.0 // indirect
57+
golang.org/x/net v0.35.0 // indirect
58+
golang.org/x/sync v0.11.0 // indirect
59+
golang.org/x/sys v0.30.0 // indirect
60+
golang.org/x/tools v0.30.0 // indirect
61+
gopkg.in/warnings.v0 v0.1.2 // indirect
1762
gopkg.in/yaml.v3 v3.0.1 // indirect
1863
)
64+
65+
tool github.com/webrpc/webrpc/cmd/webrpc-gen

_examples/golang-basics/go.sum

+396-2
Large diffs are not rendered by default.

_examples/golang-basics/go.work

-8
This file was deleted.

_examples/golang-basics/go.work.sum

-5
This file was deleted.

_examples/golang-basics/tools/go.mod

-58
This file was deleted.

0 commit comments

Comments
 (0)