This repository has been archived by the owner on Apr 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
go.mod
47 lines (39 loc) · 1.74 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright SecureKey Technologies Inc. All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
module github.com/trustbloc/fabric-peer-ext
require (
github.com/bluele/gcache v0.0.0-20190301044115-79ae3b2d8680
github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d
github.com/golang/protobuf v1.3.3
github.com/hyperledger/fabric v2.0.0+incompatible
github.com/hyperledger/fabric-chaincode-go v0.0.0-20200128192331-2d899240a7ed
github.com/hyperledger/fabric-protos-go v0.0.0-20200707132912-fee30f3ccd23
github.com/hyperledger/fabric-sdk-go v1.0.0-beta3.0.20201103202456-5b6912cc2680
github.com/hyperledger/fabric/extensions v0.0.0
github.com/ipfs/go-block-format v0.0.2
github.com/ipfs/go-blockservice v0.1.3
github.com/ipfs/go-cid v0.0.7
github.com/ipfs/go-datastore v0.4.5
github.com/ipfs/go-ipfs-blockstore v0.1.4
github.com/ipfs/go-ipfs-chunker v0.0.5
github.com/ipfs/go-ipfs-ds-help v0.1.1
github.com/ipfs/go-ipld-cbor v0.0.4
github.com/ipfs/go-ipld-format v0.2.0
github.com/ipfs/go-merkledag v0.3.2
github.com/ipfs/go-unixfs v0.2.4
github.com/multiformats/go-multihash v0.0.14
github.com/pkg/errors v0.9.1
github.com/spf13/viper2015 v1.3.2
github.com/stretchr/testify v1.6.1
github.com/syndtr/goleveldb v1.0.1-0.20190625010220-02440ea7a285
github.com/willf/bitset v1.1.10
go.uber.org/zap v1.14.1
google.golang.org/grpc v1.29.1
)
replace github.com/hyperledger/fabric => github.com/trustbloc/fabric-mod v0.1.6
replace github.com/hyperledger/fabric/extensions => ./mod/peer
replace github.com/trustbloc/fabric-peer-ext => ./
replace github.com/hyperledger/fabric-protos-go => github.com/trustbloc/fabric-protos-go-ext v0.1.5
replace github.com/spf13/viper2015 => github.com/spf13/viper v0.0.0-20150908122457-1967d93db724
go 1.14