This repository has been archived by the owner on Mar 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathgo.mod
46 lines (38 loc) · 1.87 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
// Copyright SecureKey Technologies Inc. All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
module github.com/trustbloc/sidetree-fabric
require (
github.com/Microsoft/hcsshim v0.8.10 // indirect
github.com/Shopify/sarama v1.22.1 // indirect
github.com/bluele/gcache v0.0.0-20190301044115-79ae3b2d8680
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/evanphx/json-patch v4.1.0+incompatible
github.com/golang/protobuf v1.3.3
github.com/gorilla/mux v1.7.3
github.com/hyperledger/fabric v2.0.0+incompatible
github.com/hyperledger/fabric-chaincode-go v0.0.0-20200128192331-2d899240a7ed
github.com/hyperledger/fabric-config v0.0.7
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-cid v0.0.7
github.com/multiformats/go-multihash v0.0.14
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
github.com/pkg/errors v0.9.1
github.com/rs/cors v1.7.0
github.com/spf13/viper v1.7.0
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/trustbloc/edge-core v0.1.4
github.com/trustbloc/fabric-peer-ext v0.0.0
github.com/trustbloc/sidetree-core-go v0.6.0
go.uber.org/zap v1.14.1
)
replace github.com/hyperledger/fabric => github.com/trustbloc/fabric-mod v0.1.6
replace github.com/hyperledger/fabric/extensions => github.com/trustbloc/fabric-peer-ext/mod/peer v0.0.0-20210304230522-bfcd41db977e
replace github.com/trustbloc/fabric-peer-ext => github.com/trustbloc/fabric-peer-ext v0.1.6
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.13