feat!: remove external dependencies

Remove the kingpin external dependency, and instead just use Go's stdlib
flag package.

BREAKING CHANGE: Long versions of command line flags are no longer supported.
This commit is contained in:
2022-11-14 18:58:04 +00:00
parent 2e7557a9aa
commit 9a904fee99
5 changed files with 36 additions and 55 deletions

8
go.mod
View File

@@ -1,11 +1,3 @@
module github.com/jimeh/casecmp
go 1.19
require gopkg.in/alecthomas/kingpin.v2 v2.2.6
require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/stretchr/testify v1.7.0 // indirect
)