-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for multi-values and large pages
- Loading branch information
1 parent
85d57b5
commit 1ad0e71
Showing
9 changed files
with
329 additions
and
187 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,15 +1,25 @@ | ||
module www.velocidex.com/golang/go-ese | ||
|
||
go 1.13 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/Velocidex/ordereddict v0.0.0-20220107075049-3dbe58412844 | ||
github.com/alecthomas/assert v1.0.0 | ||
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect | ||
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect | ||
github.com/davecgh/go-spew v1.1.1 | ||
github.com/sebdah/goldie v1.0.0 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/sys v0.1.0 // indirect | ||
gopkg.in/alecthomas/kingpin.v2 v2.2.6 | ||
) | ||
|
||
require ( | ||
github.com/Velocidex/yaml/v2 v2.2.8 // indirect | ||
github.com/alecthomas/colour v0.1.0 // indirect | ||
github.com/alecthomas/repr v0.0.0-20210801044451-80ca428c5142 // indirect | ||
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect | ||
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/sergi/go-diff v1.2.0 // indirect | ||
golang.org/x/sys v0.1.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
Oops, something went wrong.