-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathgo.mod
26 lines (23 loc) · 890 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
26
module github.com/ovh/symmecrypt
go 1.19
require (
github.com/SSSaaS/sssa-golang v0.0.0-20170502204618-d37d7782d752
github.com/miscreant/miscreant.go v0.0.0-20200214223636-26d376326b75
github.com/ovh/configstore v0.6.2
github.com/pelletier/go-toml v1.8.0
github.com/stretchr/testify v1.9.0
golang.org/x/crypto v0.25.0
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20240626203959-61d1e3462e30 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/ghodss/yaml v1.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.22.0 // indirect
gopkg.in/check.v1 v1.0.0-20160105164936-4f90aeace3a2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)