-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
70 lines (62 loc) · 2.94 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
module github.com/mysteriumnetwork/myst-launcher
go 1.16
require (
code.cloudfoundry.org/archiver v0.0.0-20230320125732-4c59f8192b7d
github.com/Microsoft/go-winio v0.6.0
github.com/advbet/sseclient v0.0.0-20220420050220-2d425222e61b
github.com/artdarek/go-unzip v1.0.0
github.com/asaskevich/EventBus v0.0.0-20200907212545-49d423059eef
github.com/bi-zone/go-fileversion v1.0.0
github.com/blang/semver/v4 v4.0.0
github.com/codingsince1985/checksum v1.3.0
github.com/docker/distribution v2.8.1+incompatible // indirect
github.com/docker/docker v24.0.9+incompatible
github.com/docker/go-connections v0.4.0
github.com/docker/go-units v0.5.0 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/gabriel-samfira/go-wmi v0.0.0-20200311221200-7c023ba1e6b4
github.com/go-ole/go-ole v1.2.6
github.com/gogo/protobuf v1.3.2 // indirect
github.com/gonutz/w32 v1.0.0
github.com/google/cabbie v1.0.5 // indirect
github.com/google/deck v1.1.0 // indirect
github.com/google/glazier v0.0.0-20230310154036-250f5ed41d5b
github.com/iamacarpet/go-win64api v0.0.0-20221230174906-cb41e6e774e8
github.com/kr/pretty v0.3.0 // indirect
github.com/lxn/walk v0.0.0-20210112085537-c389da54e794
github.com/lxn/win v0.0.0-20210218163916-a377121e959e
github.com/moby/term v0.0.0-20220808134915-39b0c02b01ae // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b // indirect
github.com/otiai10/copy v1.14.0 // indirect
github.com/pkg/errors v0.9.1
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/scjalliance/comshim v0.0.0-20230315213746-5e51f40bd3b9
github.com/shirou/gopsutil/v3 v3.23.9
github.com/stretchr/testify v1.8.4
github.com/tc-hib/winres v0.1.6
github.com/tryor/gdiplus v0.0.0-20200830101413-c570de9579b3
github.com/tryor/winapi v0.0.0-20200525040926-cd87d62e2f9b
github.com/winlabs/gowin32 v0.0.0-20221003142512-0d265587d3c9
golang.org/x/image v0.10.0 // indirect
golang.org/x/net v0.23.0
golang.org/x/sys v0.18.0
golang.org/x/time v0.1.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
gopkg.in/Knetic/govaluate.v3 v3.0.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gotest.tools/v3 v3.0.3 // indirect
)
replace (
github.com/bi-zone/go-fileversion => github.com/mysteriumnetwork/go-fileversion v1.0.0
//tag:patch-v1
github.com/gabriel-samfira/go-wmi => github.com/mysteriumnetwork/go-wmi v0.0.0-20211216181752-dbce75057213
//tag:shlwapi-r4
github.com/gonutz/w32 => github.com/mysteriumnetwork/w32 v1.0.1-0.20211216070125-4741b8b8111b
//tag:patch-v1
github.com/iamacarpet/go-win64api => github.com/mysteriumnetwork/go-win64api v0.0.0-20220913095126-48aad5daeb64
//branch:linklabel-color
github.com/lxn/walk => github.com/mysteriumnetwork/walk v0.0.0-20220201093859-484feb886dfe
//tag:stream-r1
github.com/tryor/gdiplus => github.com/mysteriumnetwork/gdiplus v0.0.0-20211020173905-2bd21ea15fae
)