-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
32 lines (29 loc) · 1019 Bytes
/
go.mod
File metadata and controls
32 lines (29 loc) · 1019 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
26
27
28
29
30
31
32
module github.com/KarpelesLab/tss-lib/v2
go 1.25.0
require (
github.com/KarpelesLab/base58 v1.1.1
github.com/KarpelesLab/edwards25519 v1.1.7
github.com/KarpelesLab/mldsa v0.1.3
github.com/KarpelesLab/secp256k1 v0.2.8
github.com/gtank/ristretto255 v0.2.0
github.com/hashicorp/go-multierror v1.1.1
github.com/ipfs/go-log v1.0.5
github.com/stretchr/testify v1.8.4
golang.org/x/crypto v0.49.0
google.golang.org/protobuf v1.33.0
)
require (
filippo.io/edwards25519 v1.1.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/ipfs/go-log/v2 v2.1.3 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.16.0 // indirect
golang.org/x/sys v0.42.0 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)