-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
25 lines (21 loc) · 727 Bytes
/
go.mod
File metadata and controls
25 lines (21 loc) · 727 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/yourusername/quantum-ledger
go 1.22.0
toolchain go1.24.11
require (
github.com/hyperledger/fabric v2.1.1+incompatible
github.com/hyperledger/fabric-lib-go v1.1.2
github.com/open-quantum-safe/liboqs-go v0.0.0-20250119172907-28b5301df438
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.11.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sykesm/zap-logfmt v0.0.4 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.26.0 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/sys v0.29.0 // indirect
google.golang.org/grpc v1.67.3 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)