mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-18 00:45:47 +00:00
* To-do items for broader platform/go-version benchmarking * neaten inferrer API * extend type-inference unit-test cases * Add benchmark scripts for comparing compiler versions * mlr version in addition to mlr --version * some go-benchmark files for Mac/Linux perf comparisons * neaten perf-scripts * merge * type-scan optimization tests * type-scan optimization infra * test new inferrer * mlr --time option * include --cpuprofile and --traceprofile in on-line help * sharpen inferred/deferred-type API distinction * replace old inferrer with newer/faster * update docs for new type-inferrer
24 lines
823 B
Modula-2
24 lines
823 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-20210331093148-09606ea4d4d9 // indirect
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
|
|
github.com/lestrrat-go/strftime v1.0.4
|
|
github.com/mattn/go-isatty v0.0.12
|
|
github.com/pkg/profile v1.6.0
|
|
github.com/stretchr/testify v1.7.0 // indirect
|
|
golang.org/x/sys v0.0.0-20210326220804-49726bf1d181
|
|
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf
|
|
)
|