-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
progress: auto-trim output to fit terminal width (#290)
- Loading branch information
Showing
9 changed files
with
194 additions
and
67 deletions.
There are no files selected for viewing
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
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
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,10 +1,20 @@ | ||
module github.com/jedib0t/go-pretty/v6 | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/mattn/go-runewidth v0.0.13 | ||
github.com/pkg/profile v1.6.0 | ||
github.com/stretchr/testify v1.7.4 | ||
golang.org/x/sys v0.1.0 | ||
github.com/mattn/go-runewidth v0.0.15 | ||
github.com/pkg/profile v1.7.0 | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/sys v0.16.0 | ||
golang.org/x/term v0.16.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/felixge/fgprof v0.9.3 // indirect | ||
github.com/google/pprof v0.0.0-20211214055906-6f57359322fd // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
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
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
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
Oops, something went wrong.