mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-18 00:45:47 +00:00
* Porting * Update some tests that depend on AST-print output * iterating on GOCC -> PGPG * iterating * iterating * iterating * iterating * iterating * Modify expout files that need only AST-print-syntax updates * iterating * iterating * iterating * iterating * iterating * iterating * iterating * iterating * iterating * iterating * iterating * sync test cases from mlr-6.17.0, except AST-prints ... * sync test cases from mlr-6.17.0, except AST-prints ... * Fix lashed emit for $* and @* * Fix --1 and ++1 chained unary ops * Emit with function callsite * test cases * dot operator * M_PI and M_E * Iterating on lashed emit cases * error-wording differences * rm some should-fail files * Fix issue with leading semicolon * trailing comma in func params; most AST-print deltas * error-wording delta * fix unset all * AST-print deltas * go mod tidy: forced `go 1.25` to `go 1.25.0` * Depend on PGPG v1.0.0 * Fix Windows CI failure * Remove cmd/experiments/dsl_parser * GOCC -> PGPG * neaten * Fix regex issue found in doc gen
49 lines
1.7 KiB
Modula-2
49 lines
1.7 KiB
Modula-2
module github.com/johnkerl/miller/v6
|
|
|
|
// 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/v6/cmd/mlr
|
|
// * go install github.com/johnkerl/miller/v6/cmd/mlr
|
|
|
|
// go get github.com/johnkerl/lumin@v1.0.0
|
|
// Local development:
|
|
// replace github.com/johnkerl/lumin => /Users/kerl/git/johnkerl/lumin
|
|
|
|
go 1.25.0
|
|
|
|
require (
|
|
github.com/facette/natsort v0.0.0-20181210072756-2cd4dd1e2dcb
|
|
github.com/johnkerl/lumin v1.0.0
|
|
github.com/johnkerl/pgpg/go v1.0.0
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
|
|
github.com/klauspost/compress v1.18.4
|
|
github.com/kshedden/statmodel v0.0.0-20210519035403-ee97d3e48df1
|
|
github.com/lestrrat-go/strftime v1.1.1
|
|
github.com/mattn/go-isatty v0.0.20
|
|
github.com/nine-lives-later/go-windows-terminal-sequences v1.0.4
|
|
github.com/pkg/profile v1.7.0
|
|
github.com/stretchr/testify v1.11.1
|
|
golang.org/x/sys v0.42.0
|
|
golang.org/x/term v0.41.0
|
|
golang.org/x/text v0.35.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
pault.ag/go/debian v0.19.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/felixge/fgprof v0.9.3 // indirect
|
|
github.com/golang/snappy v1.0.0 // indirect
|
|
github.com/google/pprof v0.0.0-20211214055906-6f57359322fd // indirect
|
|
github.com/kshedden/dstream v0.0.0-20190512025041-c4c410631beb // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
golang.org/x/crypto v0.45.0 // indirect
|
|
golang.org/x/tools v0.42.0 // indirect
|
|
gonum.org/v1/gonum v0.16.0 // indirect
|
|
pault.ag/go/topsort v0.1.1 // indirect
|
|
)
|