-
Notifications
You must be signed in to change notification settings - Fork 552
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
check out faddat/45-annotation into develop
- Loading branch information
Showing
29 changed files
with
451 additions
and
79 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
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 |
---|---|---|
@@ -1,27 +1,132 @@ | ||
module <%= ModulePath %> | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/cosmos/cosmos-sdk v0.44.5 | ||
github.com/cosmos/cosmos-sdk v0.45.0 | ||
github.com/cosmos/ibc-go/v2 v2.0.2 | ||
github.com/gogo/protobuf v1.3.3 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/grpc-ecosystem/grpc-gateway v1.16.0 | ||
github.com/spf13/cast v1.3.1 | ||
github.com/spf13/cast v1.4.1 | ||
github.com/spf13/cobra v1.2.1 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/tendermint/starport v0.19.2 | ||
github.com/tendermint/tendermint v0.34.14 | ||
github.com/tendermint/tm-db v0.6.4 | ||
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa | ||
github.com/tendermint/tendermint v0.34.15 | ||
github.com/tendermint/tm-db v0.6.6 | ||
google.golang.org/genproto v0.0.0-20220118154757-00ab72f36ad5 | ||
google.golang.org/grpc v1.43.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
require ( | ||
filippo.io/edwards25519 v1.0.0-beta.2 // indirect | ||
github.com/99designs/keyring v1.1.6 // indirect | ||
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d // indirect | ||
github.com/DataDog/zstd v1.4.5 // indirect | ||
github.com/Workiva/go-datastructures v1.0.53 // indirect | ||
github.com/armon/go-metrics v0.3.9 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/bgentry/speakeasy v0.1.0 // indirect | ||
github.com/btcsuite/btcd v0.22.0-beta // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/coinbase/rosetta-sdk-go v0.7.0 // indirect | ||
github.com/confio/ics23/go v0.6.6 // indirect | ||
github.com/cosmos/btcutil v1.0.4 // indirect | ||
github.com/cosmos/go-bip39 v1.0.0 // indirect | ||
github.com/cosmos/iavl v0.17.3 // indirect | ||
github.com/cosmos/ledger-cosmos-go v0.11.1 // indirect | ||
github.com/cosmos/ledger-go v0.9.2 // indirect | ||
github.com/danieljoos/wincred v1.0.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect | ||
github.com/dgraph-io/badger/v2 v2.2007.2 // indirect | ||
github.com/dgraph-io/ristretto v0.0.3 // indirect | ||
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect | ||
github.com/dustin/go-humanize v1.0.1-0.20200219035652-afde56e7acac // indirect | ||
github.com/dvsekhvalnov/jose2go v0.0.0-20200901110807-248326c1351b // indirect | ||
github.com/felixge/httpsnoop v1.0.1 // indirect | ||
github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/go-kit/kit v0.12.0 // indirect | ||
github.com/go-kit/log v0.2.0 // indirect | ||
github.com/go-logfmt/logfmt v0.5.1 // indirect | ||
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect | ||
github.com/gogo/gateway v1.1.0 // indirect | ||
github.com/golang/snappy v0.0.3 // indirect | ||
github.com/google/btree v1.0.0 // indirect | ||
github.com/google/go-cmp v0.5.7 // indirect | ||
github.com/google/orderedcode v0.0.1 // indirect | ||
github.com/gorilla/handlers v1.5.1 // indirect | ||
github.com/gorilla/websocket v1.4.2 // indirect | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect | ||
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect | ||
github.com/gtank/merlin v0.1.1 // indirect | ||
github.com/gtank/ristretto255 v0.1.2 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hdevalence/ed25519consensus v0.0.0-20210204194344-59a8610d2b87 // indirect | ||
github.com/improbable-eng/grpc-web v0.14.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jmhodges/levigo v1.0.0 // indirect | ||
github.com/keybase/go-keychain v0.0.0-20190712205309-48d3d31d256d // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/lib/pq v1.10.4 // indirect | ||
github.com/libp2p/go-buffer-pool v0.0.2 // indirect | ||
github.com/magiconair/properties v1.8.5 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect | ||
github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643 // indirect | ||
github.com/minio/highwayhash v1.0.2 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.4.2 // indirect | ||
github.com/mtibben/percent v0.2.1 // indirect | ||
github.com/pelletier/go-toml v1.9.4 // indirect | ||
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_golang v1.11.0 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.30.0 // indirect | ||
github.com/prometheus/procfs v0.7.3 // indirect | ||
github.com/rakyll/statik v0.1.7 // indirect | ||
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect | ||
github.com/regen-network/cosmos-proto v0.3.1 // indirect | ||
github.com/rs/cors v1.8.0 // indirect | ||
github.com/rs/zerolog v1.23.0 // indirect | ||
github.com/sasha-s/go-deadlock v0.2.1-0.20190427202633-1595213edefa // indirect | ||
github.com/spf13/afero v1.6.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/spf13/viper v1.9.0 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
github.com/syndtr/goleveldb v1.0.1-0.20200815110645-5c35d600f0ca // indirect | ||
github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c // indirect | ||
github.com/tendermint/btcd v0.1.1 // indirect | ||
github.com/tendermint/crypto v0.0.0-20191022145703-50d29ede1e15 // indirect | ||
github.com/tendermint/go-amino v0.16.0 // indirect | ||
github.com/zondax/hid v0.9.0 // indirect | ||
go.etcd.io/bbolt v1.3.6 // indirect | ||
golang.org/x/crypto v0.0.0-20210915214749-c084706c2272 // indirect | ||
golang.org/x/net v0.0.0-20211005001312-d4b1ae081e3b // indirect | ||
golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359 // indirect | ||
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/ini.v1 v1.63.2 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
nhooyr.io/websocket v1.8.6 // indirect | ||
) | ||
|
||
replace ( | ||
// Use cosmos-compatible protocol buffers | ||
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 | ||
// Use an updated go-keychain because the original has fallen into disrepair | ||
github.com/keybase/go-keychain => github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 | ||
// Enable building with rocksdb | ||
github.com/tecbot/gorocksdb => github.com/cosmos/gorocksdb v1.2.0 | ||
// use grpc compatible with cosmos grpc | ||
google.golang.org/grpc => google.golang.org/grpc v1.33.2 | ||
) |
Oops, something went wrong.