-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
executable file
·29 lines (26 loc) · 1.06 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
module go.dedis.ch/cs438
go 1.17
require (
github.com/alecthomas/participle/v2 v2.0.0-alpha7
github.com/disiqueira/gotree v1.0.0
github.com/ethereum/go-ethereum v1.10.15
github.com/manifoldco/promptui v0.9.0
github.com/rs/xid v1.2.1
github.com/rs/zerolog v1.20.0
github.com/stretchr/testify v1.7.0
github.com/urfave/cli/v2 v2.3.0
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
)
require (
github.com/btcsuite/btcd v0.20.1-beta // indirect
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/manifoldco/promptui v0.9.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 // indirect
golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)