miller/go.mod
John Kerl 67179eb791
Allow 0o... octal literals in the DSL (#864)
* Continue from #856

* Update expected-fail messages in test cases

* Allow 0o... octal literals in the DSL

* Build artifacts for previous commit

* go.mod/go.sum for goccmack/gocc

* Regression-test case

* Doc updates
2022-01-11 19:46:45 -05:00

24 lines
811 B
Modula-2

module github.com/johnkerl/miller
// The repo is 'miller' and the executable is 'mlr', going back many years and
// predating the Go port.
//
// If we had ./mlr.go then 'go build github.com/johnkerl/miller' then the
// executable would be 'miller' not 'mlr'.
//
// So we have cmd/mlr/main.go:
// * go build github.com/johnkerl/miller/cmd/mlr
// * go install github.com/johnkerl/miller/cmd/mlr
go 1.15
require (
github.com/goccmack/gocc v0.0.0-20211213154817-7ea699349eca // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/lestrrat-go/strftime v1.0.5
github.com/mattn/go-isatty v0.0.14
github.com/pkg/profile v1.6.0
github.com/stretchr/testify v1.7.0
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf
)