-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathgo.mod
More file actions
25 lines (22 loc) · 717 Bytes
/
go.mod
File metadata and controls
25 lines (22 loc) · 717 Bytes
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/slok/agebox
go 1.24
require (
filippo.io/age v1.2.1
github.com/alecthomas/kingpin/v2 v2.4.0
github.com/ghodss/yaml v1.0.0
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.10.0
golang.org/x/crypto v0.37.0
golang.org/x/term v0.31.0
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/alecthomas/units v0.0.0-20240927000941-0f3dac36c52b // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
golang.org/x/sys v0.32.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)