forked from KonradKuznicki/rport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
105 lines (98 loc) · 3.88 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
module github.com/realvnc-labs/rport
go 1.19
require (
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d
github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc // indirect
github.com/cloudradar-monitoring/cagent v0.0.0-20200615130556-4797f9fb8b50
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/deckarep/golang-set v1.7.1
github.com/denisbrodbeck/machineid v1.0.1
github.com/felixge/httpsnoop v1.0.1 // indirect
github.com/go-ole/go-ole v1.2.6
github.com/go-sql-driver/mysql v1.6.0
github.com/golang-jwt/jwt/v4 v4.4.1
github.com/golang-migrate/migrate/v4 v4.7.0
github.com/google/uuid v1.3.0
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.4.2
github.com/gregdel/pushover v1.0.0
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jordan-wright/email v4.0.1-0.20210109023952-943e75fe5223+incompatible
github.com/jpillora/backoff v1.0.0
github.com/jpillora/requestlog v1.0.0
github.com/jpillora/sizestr v1.0.0
github.com/kardianos/service v1.1.0
github.com/kr/fs v0.1.0 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/mattn/go-sqlite3 v1.14.6
github.com/mitchellh/mapstructure v1.4.2
github.com/mocktools/go-smtp-mock v1.8.0
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pelletier/go-toml v1.9.3 // indirect
github.com/pkg/errors v0.9.1
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/pquerna/otp v1.3.0
github.com/robfig/cron/v3 v3.0.1
github.com/scjalliance/comshim v0.0.0-20190308082608-cf06d2532c4e
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
github.com/sirupsen/logrus v1.8.1
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v1.2.1
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.8.1
github.com/stretchr/objx v0.5.0 // indirect
github.com/stretchr/testify v1.8.1
github.com/subosito/gotenv v1.2.0 // indirect
github.com/tklauser/numcpus v0.6.0 // indirect
github.com/wwt/guac v1.3.1
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/crypto v0.7.0
golang.org/x/net v0.8.0
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/sys v0.6.0
golang.org/x/term v0.6.0
golang.org/x/text v0.8.0
gopkg.in/h2non/gock.v1 v1.1.2
gopkg.in/ini.v1 v1.62.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/aidarkhanov/nanoid/v2 v2.0.5
github.com/gobeam/stringy v0.0.5
github.com/hashicorp/go-version v1.5.0
github.com/jmoiron/sqlx v1.3.5
github.com/mocktools/go-smtp-mock/v2 v2.1.0
github.com/oklog/ulid/v2 v2.1.0
github.com/oleiade/reflections v1.0.1
github.com/pkg/sftp v1.13.4
github.com/shirou/gopsutil/v3 v3.22.12
github.com/trustelem/zxcvbn v1.0.1
github.com/wneessen/go-mail v0.3.9
)
require (
filippo.io/bigmod v0.0.1
github.com/xhit/go-str2duration/v2 v2.1.0
)
require gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
require go.etcd.io/bbolt v1.3.7
require (
github.com/andrew-d/go-termutil v0.0.0-20150726205930-009166a695a2 // indirect
github.com/dlclark/regexp2 v1.7.0 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/jpillora/ansi v1.0.2 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/lxn/win v0.0.0-20210218163916-a377121e959e // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
github.com/rs/cors v1.9.0
github.com/test-go/testify v1.1.4 // indirect
github.com/tklauser/go-sysconf v0.3.11 // indirect
github.com/tomasen/realip v0.0.0-20180522021738-f0c99a92ddce // indirect
)