-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from noborus/cgo-free
Changed to a build that does not use CGO
- Loading branch information
Showing
6 changed files
with
178 additions
and
202 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
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,13 +1,62 @@ | ||
module github.com/noborus/psutilsql | ||
|
||
go 1.16 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/kr/pretty v0.2.0 // indirect | ||
github.com/noborus/guesswidth v0.3.2 // indirect | ||
github.com/noborus/trdsql v0.11.1 | ||
github.com/noborus/trdsql v0.12.1 | ||
github.com/shirou/gopsutil v3.21.11+incompatible | ||
github.com/spf13/cobra v1.7.0 | ||
github.com/tklauser/go-sysconf v0.3.11 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.2 // indirect | ||
) | ||
|
||
require ( | ||
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/fatih/color v1.15.0 // indirect | ||
github.com/go-ole/go-ole v1.3.0 // indirect | ||
github.com/go-sql-driver/mysql v1.7.1 // indirect | ||
github.com/goccy/go-yaml v1.11.2 // indirect | ||
github.com/google/uuid v1.3.1 // indirect | ||
github.com/iancoleman/orderedmap v0.3.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/itchyny/gojq v0.12.13 // indirect | ||
github.com/itchyny/timefmt-go v0.1.5 // indirect | ||
github.com/jwalton/gchalk v1.3.0 // indirect | ||
github.com/jwalton/go-supportscolor v1.2.0 // indirect | ||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect | ||
github.com/klauspost/compress v1.17.1 // indirect | ||
github.com/kr/pretty v0.2.0 // indirect | ||
github.com/lib/pq v1.10.9 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.17 // indirect | ||
github.com/multiprocessio/go-sqlite3-stdlib v0.0.0-20220822170115-9f6825a1cd25 // indirect | ||
github.com/noborus/guesswidth v0.3.4 // indirect | ||
github.com/noborus/tbln v0.0.2 // indirect | ||
github.com/olekukonko/tablewriter v0.0.5 // indirect | ||
github.com/pierrec/lz4 v2.6.1+incompatible // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect | ||
github.com/rivo/uniseg v0.4.4 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/tklauser/go-sysconf v0.3.12 // indirect | ||
github.com/tklauser/numcpus v0.6.1 // indirect | ||
github.com/ulikunitz/xz v0.5.11 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.3 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/mod v0.13.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/term v0.13.0 // indirect | ||
golang.org/x/tools v0.14.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect | ||
gonum.org/v1/gonum v0.14.0 // indirect | ||
lukechampine.com/uint128 v1.3.0 // indirect | ||
modernc.org/cc/v3 v3.41.0 // indirect | ||
modernc.org/ccgo/v3 v3.16.15 // indirect | ||
modernc.org/libc v1.24.1 // indirect | ||
modernc.org/mathutil v1.6.0 // indirect | ||
modernc.org/memory v1.7.2 // indirect | ||
modernc.org/opt v0.1.3 // indirect | ||
modernc.org/sqlite v1.26.0 // indirect | ||
modernc.org/strutil v1.2.0 // indirect | ||
modernc.org/token v1.1.0 // indirect | ||
) |
Oops, something went wrong.