-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
29 lines (24 loc) · 914 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
27
28
29
// SPDX-FileCopyrightText: © 2019-2022 Nadim Kobeissi <nadim@symbolic.software>
// SPDX-License-Identifier: GPL-3.0-only
module verifpal.com
go 1.22.0
toolchain go1.23.1
require (
github.com/logrusorgru/aurora v2.0.3+incompatible
github.com/spf13/cobra v1.8.1
)
require (
github.com/akavel/rsrc v0.10.2 // indirect
github.com/bketelsen/crypt v0.0.4 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/josephspurrier/goversioninfo v1.3.0 // indirect
github.com/mna/pigeon v1.2.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/tools v0.24.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
)