Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
plugin
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
link33
plugin
Commits
db9532d3
Commit
db9532d3
authored
Sep 27, 2019
by
kingwang
Committed by
vipwzw
Oct 01, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
go get -> go get -u
parent
c26239ac
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
74 additions
and
20 deletions
+74
-20
Makefile
Makefile
+2
-2
go.mod
go.mod
+72
-18
go.sum
go.sum
+0
-0
No files found.
Makefile
View file @
db9532d3
...
...
@@ -63,9 +63,9 @@ autotest_tick: autotest ## run with ticket mining
update
:
##
version 可以是git tag打的具体版本号
,
也可以是commit hash
,
什么都不填的情况下默认从master分支拉取最新版本
@
if
[
-n
"
$(version)
"
]
;
then
\
go get github.com/33cn/chain33@
${
version
}
;
\
go get
-u
github.com/33cn/chain33@
${
version
}
;
\
else
\
go get github.com/33cn/chain33@master
;
fi
go get
-u
github.com/33cn/chain33@master
;
fi
@
go mod tidy
dep
:
@
go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.17.1
...
...
go.mod
View file @
db9532d3
...
...
@@ -3,35 +3,89 @@ module github.com/33cn/plugin
go 1.12
require (
cloud.google.com/go v0.46.3 // indirect
github.com/33cn/chain33 v0.0.0-20190927081930-c57231ae6429
github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96 // indirect
github.com/BurntSushi/toml v0.3.1
github.com/NebulousLabs/Sia v1.3.7
github.com/btcsuite/btcd v0.0.0-20181013004428-67e573d211ac
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect
github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d // indirect
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd // indirect
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792 // indirect
github.com/coreos/etcd v3.3.13+incompatible
github.com/NebulousLabs/entropy-mnemonics v0.0.0-20181203154559-bc7e13c5ccd8 // indirect
github.com/NebulousLabs/errors v0.0.0-20181203160057-9f787ce8f69e // indirect
github.com/NebulousLabs/fastrand v0.0.0-20181203155948-6fb6489aac4e // indirect
github.com/NebulousLabs/merkletree v0.0.0-20181203152040-08d5d54b07f5 // indirect
github.com/XiaoMi/pegasus-go-client v0.0.0-20190415102652-337e0ea1d766 // indirect
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/apache/thrift v0.12.0 // indirect
github.com/btcsuite/btcd v0.0.0-20190926002857-ba530c4abb35
github.com/btcsuite/goleveldb v1.0.0 // indirect
github.com/coreos/bbolt v1.3.3 // indirect
github.com/coreos/etcd v3.3.15+incompatible
github.com/coreos/go-semver v0.3.0 // indirect
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // indirect
github.com/c
oreos/pkg v0.0.0-20180928190104-399ea9e2e55f
// indirect
github.com/c
reack/pty v1.1.9
// indirect
github.com/davecgh/go-spew v1.1.1
github.com/gogo/protobuf v1.2.1
github.com/dchest/blake256 v1.1.0 // indirect
github.com/dgraph-io/badger v1.6.0 // indirect
github.com/gogo/protobuf v1.3.0
github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
github.com/golang/protobuf v1.3.2
github.com/hashicorp/golang-lru v0.5.0
github.com/pkg/errors v0.8.0
github.com/golang/snappy v0.0.1 // indirect
github.com/google/go-cmp v0.3.1 // indirect
github.com/google/pprof v0.0.0-20190908185732-236ed259b199 // indirect
github.com/gorilla/websocket v1.4.1 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.1.0 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.11.2 // indirect
github.com/hashicorp/golang-lru v0.5.3
github.com/jessevdk/go-flags v1.4.0 // indirect
github.com/kkdai/bstream v1.0.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pty v1.1.8 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect
github.com/mattn/go-isatty v0.0.9 // indirect
github.com/mr-tron/base58 v1.1.2 // indirect
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
github.com/onsi/ginkgo v1.10.1 // indirect
github.com/onsi/gomega v1.7.0 // indirect
github.com/pelletier/go-toml v1.4.0 // indirect
github.com/pkg/errors v0.8.1
github.com/prometheus/client_golang v1.1.0 // indirect
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 // indirect
github.com/prometheus/common v0.7.0 // indirect
github.com/prometheus/procfs v0.0.5 // indirect
github.com/robertkrimen/otto v0.0.0-20180617131154-15f95af6e78d
github.com/rs/cors v1.6.0
github.com/spf13/cobra v0.0.3
github.com/stretchr/testify v1.3.0
github.com/rogpeppe/fastuuid v1.2.0 // indirect
github.com/rogpeppe/go-internal v1.4.0 // indirect
github.com/rs/cors v1.7.0
github.com/russross/blackfriday v2.0.0+incompatible // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cobra v0.0.5
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.4.0 // indirect
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.4.0
github.com/syndtr/goleveldb v1.0.0 // indirect
github.com/tjfoc/gmsm v0.0.0-20171124023159-98aa888b79d8
github.com/ugorji/go v1.1.7 // indirect
github.com/valyala/fasthttp v1.4.0
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect
google.golang.org/grpc v1.22.1
go.etcd.io/bbolt v1.3.3 // indirect
go.opencensus.io v0.22.1 // indirect
go.uber.org/multierr v1.2.0 // indirect
golang.org/x/crypto v0.0.0-20190926180335-cea2066c6411
golang.org/x/exp v0.0.0-20190925190815-26a69ce95baf // indirect
golang.org/x/image v0.0.0-20190910094157-69e4b8554b2a // indirect
golang.org/x/mobile v0.0.0-20190923204409-d3ece3b6da5f // indirect
golang.org/x/net v0.0.0-20190926025831-c00fd9afed17
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
golang.org/x/sys v0.0.0-20190927073244-c990c680b611 // indirect
golang.org/x/time v0.0.0-20190921001708-c4c64cad1fd0 // indirect
golang.org/x/tools v0.0.0-20190927052746-69890759d905 // indirect
google.golang.org/api v0.10.0 // indirect
google.golang.org/appengine v1.6.4 // indirect
google.golang.org/genproto v0.0.0-20190926190326-7ee9db18f195 // indirect
google.golang.org/grpc v1.24.0
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/go-playground/webhooks.v5 v5.13.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
)
go.sum
View file @
db9532d3
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment