We only use go-libp2p for the crypto wrappers (github.com/libp2p/go-libp2p/core/crypto), and those have not changed in a while. We don't need the most recent version of go-libp2p. On the other hand, a too recent version can easily mess with project that aim for an older version of libp2p (often transitively). This PR gives some leeway for version resolution.
44 lines
1.5 KiB
Modula-2
44 lines
1.5 KiB
Modula-2
module github.com/ucan-wg/go-ucan
|
|
|
|
go 1.23
|
|
|
|
require (
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0
|
|
github.com/ipfs/go-cid v0.5.0
|
|
github.com/ipld/go-ipld-prime v0.21.0
|
|
github.com/lestrrat-go/jwx/v2 v2.1.3
|
|
github.com/libp2p/go-libp2p v0.33.0
|
|
github.com/mr-tron/base58 v1.2.0
|
|
github.com/multiformats/go-multibase v0.2.0
|
|
github.com/multiformats/go-multicodec v0.9.0
|
|
github.com/multiformats/go-multihash v0.2.3
|
|
github.com/multiformats/go-varint v0.0.7
|
|
github.com/stretchr/testify v1.10.0
|
|
golang.org/x/crypto v0.32.0
|
|
gotest.tools/v3 v3.5.1
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/goccy/go-json v0.10.3 // indirect
|
|
github.com/google/go-cmp v0.5.9 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
|
|
github.com/lestrrat-go/blackmagic v1.0.2 // indirect
|
|
github.com/lestrrat-go/httpcc v1.0.1 // indirect
|
|
github.com/lestrrat-go/httprc v1.0.6 // indirect
|
|
github.com/lestrrat-go/iter v1.0.2 // indirect
|
|
github.com/lestrrat-go/option v1.0.1 // indirect
|
|
github.com/minio/sha256-simd v1.0.1 // indirect
|
|
github.com/multiformats/go-base32 v0.1.0 // indirect
|
|
github.com/multiformats/go-base36 v0.2.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/polydawn/refmt v0.89.0 // indirect
|
|
github.com/segmentio/asm v1.2.0 // indirect
|
|
github.com/spaolacci/murmur3 v1.1.0 // indirect
|
|
golang.org/x/sys v0.29.0 // indirect
|
|
google.golang.org/protobuf v1.36.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
lukechampine.com/blake3 v1.3.0 // indirect
|
|
)
|