diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-11-24 16:35:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-24 16:35:10 -0500 |
commit | d02e09c53e216b006ec73f1d01002a8bf214e44c (patch) | |
tree | b3f39a80236d1a9884055dbba934dfe8655c2778 /go.mod | |
parent | 2b5e7c4102b2d54cd2e5fe7471ec11613edf6a21 (diff) |
Goreleaser implementation works locally (#9)
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -3,11 +3,11 @@ module github.com/ChausseBenjamin/termpicker go 1.23.2 require ( + github.com/atotto/clipboard v0.1.4 github.com/charmbracelet/bubbles v0.20.0 github.com/charmbracelet/bubbletea v1.2.3 github.com/charmbracelet/lipgloss v1.0.0 github.com/urfave/cli/v2 v2.27.5 - golang.design/x/clipboard v0.7.0 ) require ( @@ -27,9 +27,6 @@ require ( github.com/rivo/uniseg v0.4.7 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect - golang.org/x/exp v0.0.0-20190731235908-ec7cb31e5a56 // indirect - golang.org/x/image v0.6.0 // indirect - golang.org/x/mobile v0.0.0-20230301163155-e0f57694e12c // indirect golang.org/x/sync v0.9.0 // indirect golang.org/x/sys v0.27.0 // indirect golang.org/x/text v0.8.0 // indirect |