-
-
Notifications
You must be signed in to change notification settings - Fork 138
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 #423 from Juneezee/go1.17
build: upgrade `go` directive in `go.mod` to 1.17
- Loading branch information
Showing
1 changed file
with
11 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,25 @@ | ||
module github.com/AllenDang/giu | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/AllenDang/go-findfont v0.0.0-20200702051237-9f180485aeb8 | ||
github.com/AllenDang/imgui-go v1.12.1-0.20211220065947-c3e78789ac41 | ||
github.com/faiface/mainthread v0.0.0-20171120011319-8b78f0a41ae3 | ||
github.com/go-gl/gl v0.0.0-20211210172815-726fda9656d6 // indirect | ||
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20211213063430-748e38ca8aec | ||
github.com/go-resty/resty/v2 v2.7.0 | ||
github.com/kylelemons/godebug v1.1.0 // indirect | ||
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 | ||
github.com/sahilm/fuzzy v0.1.0 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.0 // indirect | ||
github.com/go-gl/gl v0.0.0-20211210172815-726fda9656d6 // indirect | ||
github.com/kylelemons/godebug v1.1.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/net v0.0.0-20211029224645-99673261e6eb // indirect | ||
golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
) |