-
-
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.
refactoring, minor tweaks, add CEL engine
- Loading branch information
1 parent
ed3f8f5
commit 30d2c55
Showing
11 changed files
with
626 additions
and
47 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
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,44 +1,53 @@ | ||
module github.com/permafrost-dev/zeget | ||
|
||
go 1.21 | ||
go 1.22.0 | ||
|
||
toolchain go1.22.2 | ||
toolchain go1.23.0 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v1.3.2 | ||
github.com/blang/semver v3.5.1+incompatible | ||
github.com/gobwas/glob v0.2.3 | ||
github.com/jessevdk/go-flags v1.5.0 | ||
github.com/klauspost/compress v1.17.8 | ||
github.com/klauspost/compress v1.17.11 | ||
github.com/schollz/progressbar/v3 v3.14.6 | ||
github.com/ulikunitz/xz v0.5.12 | ||
) | ||
|
||
require ( | ||
cel.dev/expr v0.18.0 // indirect | ||
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect | ||
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect | ||
github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db // indirect | ||
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/muesli/reflow v0.3.0 // indirect | ||
github.com/muesli/termenv v0.15.2 // indirect | ||
golang.org/x/net v0.24.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/tools v0.20.0 // indirect | ||
github.com/stoewer/go-strcase v1.2.0 // indirect | ||
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc // indirect | ||
golang.org/x/net v0.30.0 // indirect | ||
golang.org/x/text v0.19.0 // indirect | ||
golang.org/x/tools v0.26.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240826202546-f6391c0de4c7 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240826202546-f6391c0de4c7 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
require ( | ||
github.com/cespare/xxhash/v2 v2.3.0 | ||
github.com/charmbracelet/lipgloss v0.10.0 | ||
github.com/google/cel-go v0.22.1 | ||
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect | ||
github.com/oklog/ulid/v2 v2.1.0 | ||
github.com/onsi/ginkgo/v2 v2.17.3 | ||
github.com/onsi/gomega v1.33.1 | ||
github.com/onsi/ginkgo/v2 v2.22.0 | ||
github.com/onsi/gomega v1.34.2 | ||
github.com/rivo/uniseg v0.4.7 // indirect | ||
github.com/twpayne/go-vfs/v5 v5.0.4 | ||
golang.org/x/sys v0.22.0 // indirect | ||
golang.org/x/term v0.22.0 // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
golang.org/x/term v0.25.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
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
Oops, something went wrong.