Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Use mage instead of make #162

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 18 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
module github.com/setlog/trivrost

require (
git.sr.ht/~tslocum/preallocate v0.1.1
git.sr.ht/~tslocum/preallocate v0.1.2
github.com/MMulthaupt/chronometry v0.1.1
github.com/StackExchange/wmi v0.0.0-20181212234831-e0a55b97c705 // indirect
github.com/andlabs/ui v0.0.0-20200610043537-70a69d6ae31e
github.com/andlabs/ui v0.0.0-20180902183112-867a9e5a498d
github.com/davecgh/go-spew v1.1.1
github.com/fatih/color v1.9.0
github.com/fatih/color v1.7.0
github.com/go-ole/go-ole v1.2.4
github.com/gofrs/flock v0.7.1
github.com/mattn/go-ieproxy v0.0.1
github.com/prometheus/client_golang v1.7.1
github.com/shirou/gopsutil v2.20.7+incompatible
github.com/sirupsen/logrus v1.6.0
github.com/stretchr/testify v1.6.1
github.com/xeipuuv/gojsonschema v1.2.0
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e
golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/magefile/mage v1.9.0
github.com/mattn/go-colorable v0.1.0 // indirect
github.com/mattn/go-ieproxy v0.0.0-20190805055040-f9202b1cfdeb
github.com/mattn/go-isatty v0.0.4 // indirect
github.com/shirou/gopsutil v0.0.0-20190427031343-fa9845945e5b
github.com/sirupsen/logrus v1.4.2
github.com/stretchr/testify v1.4.0
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/xeipuuv/gojsonschema v1.1.0
golang.org/x/net v0.0.0-20190918130420-a8b05e9114ab
golang.org/x/sys v0.0.0-20190919044723-0c1ff786ef13
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)

go 1.13

replace git.sr.ht/~tslocum/preallocate => github.com/smallnest/preallocate v0.1.1
Loading