-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FAB-15782 Sample Go CC should include deps
The ccenv used to build Go chaincode is being updated to no longer include the shim dependency. Go chaincode must now vendor all of its dependencies prior to being packaged and installed. Go chaincodes have been updated to include go.mod for versioned dependencies. Change-Id: Ib971cd3f841d5c92a509450bd85f6e424cc60c6e Signed-off-by: Gari Singh <[email protected]>
- Loading branch information
1 parent
6ba5a19
commit c57d67c
Showing
53 changed files
with
1,627 additions
and
15,235 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,5 @@ | |
/config | ||
.DS_Store | ||
.project | ||
# omit Go vendor directories | ||
vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module github.com/hyperledger/fabric-samples/chaincode/abac/go | ||
|
||
go 1.12 | ||
|
||
require ( | ||
github.com/Knetic/govaluate v3.0.0+incompatible // indirect | ||
github.com/Shopify/sarama v1.22.1 // indirect | ||
github.com/golang/protobuf v1.3.1 | ||
github.com/hashicorp/go-version v1.2.0 // indirect | ||
github.com/hyperledger/fabric v2.0.0-alpha.0.20190624224950-f2b8fef8859c+incompatible | ||
github.com/hyperledger/fabric-amcl v0.0.0-20181230093703-5ccba6eab8d6 // indirect | ||
github.com/miekg/pkcs11 v1.0.2 // indirect | ||
github.com/onsi/ginkgo v1.8.0 // indirect | ||
github.com/onsi/gomega v1.5.0 // indirect | ||
github.com/spf13/viper v1.4.0 // indirect | ||
github.com/sykesm/zap-logfmt v0.0.2 // indirect | ||
golang.org/x/crypto v0.0.0-20190621222207-cc06ce4a13d4 // indirect | ||
google.golang.org/grpc v1.21.1 // indirect | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.
28 changes: 0 additions & 28 deletions
28
chaincode/abac/go/vendor/github.com/golang/protobuf/LICENSE
This file was deleted.
Oops, something went wrong.
253 changes: 0 additions & 253 deletions
253
chaincode/abac/go/vendor/github.com/golang/protobuf/proto/clone.go
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.