-
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.
cleanup: update to go 1.23 and bump deps (#6)
- Loading branch information
1 parent
445ff19
commit a7bd6aa
Showing
4 changed files
with
48 additions
and
42 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 |
---|---|---|
@@ -1,26 +1,29 @@ | ||
module github.com/b1naryth1ef/carto | ||
|
||
go 1.21 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/Tnze/go-mc v1.20.1 | ||
github.com/hashicorp/hcl/v2 v2.19.1 | ||
github.com/Tnze/go-mc v1.20.2 | ||
github.com/hashicorp/hcl/v2 v2.23.0 | ||
github.com/muesli/gamut v0.3.1 | ||
github.com/urfave/cli/v2 v2.27.1 | ||
github.com/zclconf/go-cty v1.14.2 | ||
github.com/urfave/cli/v2 v2.27.5 | ||
github.com/zclconf/go-cty v1.16.2 | ||
) | ||
|
||
require ( | ||
github.com/agext/levenshtein v1.2.1 // indirect | ||
github.com/agext/levenshtein v1.2.3 // indirect | ||
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect | ||
github.com/google/go-cmp v0.3.1 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect | ||
github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
github.com/muesli/clusters v0.0.0-20200529215643-2700303c1762 // indirect | ||
github.com/muesli/kmeans v0.3.1 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect | ||
golang.org/x/text v0.11.0 // indirect | ||
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect | ||
golang.org/x/mod v0.22.0 // indirect | ||
golang.org/x/sync v0.10.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
golang.org/x/tools v0.29.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
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,2 @@ | ||
build: | ||
go build -o carto cmd/carto/main.go |