-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgo.mod
25 lines (22 loc) · 831 Bytes
/
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
module github.com/enrichman/stegosecrets
go 1.22
require (
github.com/auyer/steganography v1.0.2
github.com/corvus-ch/shamir v1.0.1
github.com/pkg/errors v0.9.1
github.com/schollz/progressbar/v3 v3.11.0
github.com/spf13/cobra v1.6.0
github.com/stretchr/testify v1.8.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 // indirect
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)