forked from activecm/rita-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
50 lines (46 loc) · 2.17 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
module github.com/activecm/rita
go 1.17
// If urfave/cli is updated from v1.20.0 the corresponding autocomplete file
// should be updated in etc/bash_completion.d/rita
// https://github.com/urfave/cli/blob/master/autocomplete/bash_autocomplete
require (
github.com/activecm/mgorus v0.1.1
github.com/activecm/mgosec v0.1.2-0.20191108195135-d918492993da
github.com/activecm/rita-bl v0.0.0-20220823191806-f014db21453d
github.com/blang/semver v3.5.1+incompatible
github.com/briandowns/spinner v1.16.0
github.com/creasty/defaults v1.3.0
github.com/globalsign/mgo v0.0.0-20190517090918-73267e130ca1
github.com/google/go-github v17.0.0+incompatible
github.com/google/uuid v1.1.2
github.com/json-iterator/go v1.1.11
github.com/olekukonko/tablewriter v0.0.2-0.20190214164707-93462a5dfaa6
github.com/pbnjay/memory v0.0.0-20201129165224-b12e5d931931
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5
github.com/sirupsen/logrus v1.4.2
github.com/skratchdot/open-golang v0.0.0-20190104022628-a2dfa6d0dab6
github.com/stretchr/testify v1.3.0
github.com/urfave/cli v1.20.0
github.com/vbauerster/mpb v3.3.4+incompatible
gopkg.in/yaml.v2 v2.2.2
)
require (
github.com/VividCortex/ewma v1.1.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.7.0 // indirect
github.com/golang/protobuf v1.3.3 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/google/safebrowsing v0.0.0-20190214191829-0feabcc2960b // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect
github.com/mattn/go-isatty v0.0.8 // indirect
github.com/mattn/go-runewidth v0.0.4 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 // indirect
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b // indirect
golang.org/x/sys v0.0.0-20190422165155-953cdadca894 // indirect
golang.org/x/text v0.3.0 // indirect
gopkg.in/tomb.v2 v2.0.0-20161208151619-d5d1b5820637 // indirect
)