-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
26 lines (22 loc) · 793 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 blockchain
go 1.23.2
require github.com/dgraph-io/badger v1.6.2
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/testify v1.9.0 // indirect
github.com/vrecan/death v3.0.1+incompatible // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96 // indirect
github.com/cespare/xxhash v1.1.0 // indirect
github.com/dgraph-io/ristretto v0.0.2 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/golang/protobuf v1.3.1 // indirect
github.com/mr-tron/base58 v1.2.0
github.com/pkg/errors v0.8.1 // indirect
golang.org/x/crypto v0.29.0
golang.org/x/net v0.21.0 // indirect
golang.org/x/sys v0.27.0 // indirect
)