-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #111 from k1LoW/update-pkgs
Update pkgs and go directive version
- Loading branch information
Showing
7 changed files
with
49 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module b_bar | ||
|
||
go 1.21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module c_car | ||
|
||
go 1.21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module util | ||
|
||
go 1.21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module testutil | ||
|
||
go 1.21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
module github.com/k1LoW/gostyle | ||
|
||
go 1.22.4 | ||
go 1.22.10 | ||
|
||
require ( | ||
github.com/bmatcuk/doublestar/v4 v4.6.1 | ||
github.com/bmatcuk/doublestar/v4 v4.7.1 | ||
github.com/fatih/camelcase v1.0.0 | ||
github.com/gostaticanalysis/comment v1.4.2 | ||
github.com/gostaticanalysis/testutil v0.4.0 | ||
golang.org/x/tools v0.22.0 | ||
github.com/gostaticanalysis/comment v1.5.0 | ||
github.com/gostaticanalysis/testutil v0.5.2 | ||
golang.org/x/tools v0.28.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/hashicorp/go-version v1.2.1 // indirect | ||
github.com/otiai10/copy v1.2.0 // indirect | ||
github.com/hashicorp/go-version v1.7.0 // indirect | ||
github.com/otiai10/copy v1.14.0 // indirect | ||
github.com/tenntenn/modver v1.0.1 // indirect | ||
github.com/tenntenn/text/transform v0.0.0-20200319021203-7eef512accb3 // indirect | ||
golang.org/x/mod v0.18.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/text v0.3.8 // indirect | ||
golang.org/x/mod v0.22.0 // indirect | ||
golang.org/x/sync v0.10.0 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters