go.mod raw
1 module github.com/p9c/gel
2
3 go 1.16
4
5 require (
6 github.com/BurntSushi/xgb v0.0.0-20210121224620-deaf085860bc
7 github.com/atotto/clipboard v0.1.4
8 github.com/p9c/gio v0.0.5
9 github.com/p9c/interrupt v0.0.8
10 github.com/p9c/log v0.0.12
11 github.com/p9c/opts v0.0.13
12 github.com/p9c/qu v0.0.12
13 go.uber.org/atomic v1.7.0
14 golang.org/x/exp v0.0.0-20210417010653-0739314eea07
15 golang.org/x/image v0.0.0-20210220032944-ac19c3e999fb
16 gopkg.in/src-d/go-git.v4 v4.13.1
17 )
18
19 replace (
20 github.com/p9c/gio => ./gio
21 github.com/p9c/log => ../log
22 github.com/p9c/opts => ../opts
23 github.com/p9c/qu => ../qu
24 )
25