-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(#159) Move to Sprout library from Sprig
Signed-off-by: R.I.Pienaar <[email protected]>
- Loading branch information
Showing
8 changed files
with
72 additions
and
85 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
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
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,54 +1,55 @@ | ||
module github.com/choria-io/appbuilder | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
toolchain go1.22.0 | ||
|
||
require ( | ||
github.com/42atomys/sprout v0.0.0-20240403003052-d64a48ef7bae | ||
github.com/AlecAivazis/survey/v2 v2.3.7 | ||
github.com/Masterminds/sprig/v3 v3.2.3 | ||
github.com/adrg/xdg v0.4.0 | ||
github.com/choria-io/fisk v0.6.1 | ||
github.com/choria-io/fisk v0.6.2 | ||
github.com/choria-io/goform v0.0.3 | ||
github.com/dustin/go-humanize v1.0.1 | ||
github.com/expr-lang/expr v1.15.6 | ||
github.com/expr-lang/expr v1.16.5 | ||
github.com/ghodss/yaml v1.0.0 | ||
github.com/guptarohit/asciigraph v0.5.6 | ||
github.com/itchyny/gojq v0.12.14 | ||
github.com/guptarohit/asciigraph v0.7.1 | ||
github.com/itchyny/gojq v0.12.15 | ||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 | ||
github.com/onsi/ginkgo/v2 v2.13.2 | ||
github.com/onsi/gomega v1.30.0 | ||
github.com/onsi/ginkgo/v2 v2.17.1 | ||
github.com/onsi/gomega v1.32.0 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/tidwall/gjson v1.17.0 | ||
github.com/tidwall/gjson v1.17.1 | ||
github.com/xlab/tablewriter v0.0.0-20160610135559-80b567a11ad5 | ||
golang.org/x/term v0.15.0 | ||
golang.org/x/term v0.19.0 | ||
gopkg.in/alessio/shellescape.v1 v1.0.0-20170105083845-52074bc9df61 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
dario.cat/mergo v1.0.0 // indirect | ||
github.com/Masterminds/semver/v3 v3.2.1 // indirect | ||
github.com/alessio/shellescape v1.4.1 // indirect | ||
github.com/go-logr/logr v1.3.0 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/pprof v0.0.0-20231205033806-a5a03c77bf08 // indirect | ||
github.com/google/uuid v1.4.0 // indirect | ||
github.com/google/pprof v0.0.0-20240416155748-26353dc0451f // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/huandu/xstrings v1.4.0 // indirect | ||
github.com/imdario/mergo v0.3.16 // indirect | ||
github.com/itchyny/timefmt-go v0.1.5 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/shopspring/decimal v1.3.1 // indirect | ||
github.com/shopspring/decimal v1.4.0 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/tidwall/match v1.1.1 // indirect | ||
github.com/tidwall/pretty v1.2.1 // indirect | ||
golang.org/x/crypto v0.16.0 // indirect | ||
golang.org/x/net v0.19.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/crypto v0.22.0 // indirect | ||
golang.org/x/net v0.24.0 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/tools v0.16.0 // indirect | ||
golang.org/x/tools v0.20.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
Oops, something went wrong.