mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
Bumps [github.com/mattn/go-isatty](https://github.com/mattn/go-isatty) from 0.0.12 to 0.0.14. - [Release notes](https://github.com/mattn/go-isatty/releases) - [Commits](https://github.com/mattn/go-isatty/compare/v0.0.12...v0.0.14) --- updated-dependencies: - dependency-name: github.com/mattn/go-isatty dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23 lines
738 B
Modula-2
23 lines
738 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/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-20210630005230-0f9fa26af87c
|
|
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf
|
|
)
|