Start work on implementing kitty @ as a static binary using Go

This commit is contained in:
Kovid Goyal
2022-08-14 18:36:03 +05:30
parent 126468a5dd
commit bbf7504303
8 changed files with 796 additions and 0 deletions

19
go.mod Normal file
View File

@@ -0,0 +1,19 @@
module kitty
go 1.19
require (
github.com/fatih/color v1.13.0
github.com/mattn/go-runewidth v0.0.13
github.com/spf13/cobra v1.5.0
github.com/spf13/pflag v1.0.5
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
)
require (
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.9 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect
)