-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgo.mod
71 lines (67 loc) · 3.41 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
module github.com/ventsislav-georgiev/prosper
go 1.18
replace (
fyne.io/fyne/v2 => github.com/ventsislav-georgiev/fyne/v2 v2.3.6-0.20240113141759-d3b62e10861e
github.com/blacktop/lzfse-cgo => github.com/ventsislav-georgiev/lzfse-cgo v1.1.17-0.20220102053312-50b37453a738
github.com/go-gl/glfw/v3.3/glfw => github.com/ventsislav-georgiev/glfw/v3.3/glfw v0.0.0-20230204191122-6dcb195621b6
github.com/iineva/bom => github.com/ventsislav-georgiev/bom v0.0.0-20220102051948-0e6a1a4b3c30
github.com/tc-hib/winres => github.com/ventsislav-georgiev/winres v0.1.7-0.20220103002232-5d2af9a563d4
golang.design/x/hotkey => github.com/ventsislav-georgiev/hotkey v0.4.2-0.20231125002352-dfa7ef6f5a6f
)
require (
fyne.io/fyne/v2 v2.3.5
github.com/Knetic/govaluate v3.0.0+incompatible
github.com/bcicen/go-units v1.0.5
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20231124074035-2de0cf0c80af
github.com/groob/plist v0.0.0-20220217120414-63fa881b19a5
github.com/hashicorp/golang-lru v1.0.2
github.com/iineva/bom v0.0.0-20210605043415-7d45ba1bcca3
github.com/parsiya/golnk v0.0.0-20221103095132-740a4c27c4ff
github.com/pkg/profile v1.7.0
github.com/sahilm/fuzzy v0.1.0
github.com/srwiley/oksvg v0.0.0-20221011165216-be6e8873101c
github.com/srwiley/rasterx v0.0.0-20220730225603-2ab79fcdd4ef
github.com/tc-hib/winres v0.1.6
golang.design/x/clipboard v0.7.0
golang.design/x/hotkey v0.4.1
yrh.dev/icns v0.0.0-20210608051050-de3ea6a57b33
)
require (
fyne.io/systray v1.10.1-0.20231115130155-104f5ef7839e // indirect
github.com/bcicen/bfstree v1.0.0 // indirect
github.com/blacktop/lzfse-cgo v1.1.19 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/fgprof v0.9.3 // indirect
github.com/fredbi/uri v1.0.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/fyne-io/gl-js v0.0.0-20230506162202-1fdaa286a934 // indirect
github.com/fyne-io/glfw-js v0.0.0-20231117203605-bc7c6f97d52f // indirect
github.com/fyne-io/image v0.0.0-20230811065323-ed435dc8bca6 // indirect
github.com/go-gl/gl v0.0.0-20231021071112-07e5d0ea2e71 // indirect
github.com/go-text/typesetting v0.0.0-20231120180320-af78120ccb13 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/goki/freetype v0.0.0-20220119013949-7a161fd3728c // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20231101202521-4ca4178f5c7a // indirect
github.com/gopherjs/gopherjs v1.17.2 // indirect
github.com/jsummers/gobmp v0.0.0-20230614200233-a9de23ed2e25 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/stretchr/testify v1.8.4 // indirect
github.com/tevino/abool v1.2.0 // indirect
github.com/yuin/goldmark v1.6.0 // indirect
golang.org/x/exp/shiny v0.0.0-20231110203233-9a3e6036ecaa // indirect
golang.org/x/image v0.14.0 // indirect
golang.org/x/mobile v0.0.0-20231108233038-35478a0c49da // indirect
golang.org/x/net v0.18.0 // indirect
golang.org/x/sys v0.14.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
honnef.co/go/js/dom v0.0.0-20231030024858-cb489e859d05 // indirect
)