mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-06 13:26:23 +00:00
Bumps [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) from 0.4.1 to 1.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/BurntSushi/toml/releases">github.com/BurntSushi/toml's releases</a>.</em></p> <blockquote> <h2>v1.0.0</h2> <p>This release adds much more detailed errors, support for the <code>toml.Marshaler</code> interface, and several fixes.</p> <p>There is no special meaning in the jump to v1.0; the 0.x releases were always treated as if they're 1.x with regards to compatibility; the versioning scheme for this library predates the release of modules.</p> <h2>New features</h2> <ul> <li> <p>Error reporting is much improved; the reported position of errors should now always be correct and the library can print more detailed errors (<a href="https://github-redirect.dependabot.com/BurntSushi/toml/issues/299">#299</a>, <a href="https://github-redirect.dependabot.com/BurntSushi/toml/issues/332">#332</a>)</p> <p>Decode always return a <code>toml.ParseError</code>, which has three methods:</p> <ul> <li> <p><code>Error()</code> behaves as before and shows a single concise line with the error.</p> </li> <li> <p><code>ErrorWithLocation()</code> shows the same error, but also shows the line the error occurred at, similar to e.g. clang or the Rust compiler.</p> </li> <li> <p><code>ErrorWithUsage()</code> is the same as <code>ErrorWithPosition()</code>, but may also show a longer usage guidance message. This isn't always present (in which case it behaves identical to <code>ErrorWithPosition()</code>), but it should be present for most common mistakes and sources of confusion.</p> </li> </ul> <p>Which error the correct one to use is depends on your application and preferences; in general I would recommend using at least <code>ErrorWithPosition()</code> for user-facing errors, as it's much more helpful for users of any skill level. If your users are likely to be non-technical then <code>ErrorWithUsage()</code> is probably a good idea; I did my best to avoid technical jargon such as "newline" and phrase things in a way that's understandable by most people not intimately familiar with these sort of things.</p> <p>Additionally, the TOML key that fialed should now always be reported in all errors.</p> </li> <li> <p>Add <code>toml.Marshaler</code> interface. This can be used if you want full control over how something is marshalled as TOML, similar to <code>json.Marshaler</code> etc. This takes precedence over <code>encoding.TextMarshaler</code>. (<a href="https://github-redirect.dependabot.com/BurntSushi/toml/issues/327">#327</a>)</p> </li> <li> <p>Allow TOML integers to be decoded to a Go float (<a href="https://github-redirect.dependabot.com/BurntSushi/toml/issues/325">#325</a>)</p> <p>Previously <code>int = 42</code> could only be decoded to an <code>int*</code> type; now this can also be decoded in a <code>float</code> type as long as it can be represented without loss of data.</p> </li> </ul> <h2>Fixes</h2> <ul> <li> <p>Key.String() is now quoted when needed (<a href="https://github-redirect.dependabot.com/BurntSushi/toml/issues/333">#333</a>)</p> </li> <li> <p>Fix decoding of nested structs on 32bit platforms (<a href="https://github-redirect.dependabot.com/BurntSushi/toml/issues/314">#314</a>)</p> </li> <li> <p>Empty slices are now always <code>[]T{}</code> rather than nil, which was the behaviour in v0.3.1 and before. While they are identical for most purposes, encoding/json encodes them different (<code>[]</code> vs. <code>null</code>), making it an (accidentally) incompatible change (<a href="https://github-redirect.dependabot.com/BurntSushi/toml/issues/339">#339</a>)</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="4272474656"><code>4272474</code></a> Reject control characters everywhere</li> <li><a href="9bbaaec997"><code>9bbaaec</code></a> Update toml-test</li> <li><a href="8a54f3e8df"><code>8a54f3e</code></a> Merge TestDecodeInterfaceSlice in TestDecodeSlices</li> <li><a href="9515b92979"><code>9515b92</code></a> Decode S=[] into a non-nil []interface{}. (<a href="https://github-redirect.dependabot.com/BurntSushi/toml/issues/339">#339</a>)</li> <li><a href="7d0236fe74"><code>7d0236f</code></a> Make sure quoted keys with dots work well (<a href="https://github-redirect.dependabot.com/BurntSushi/toml/issues/333">#333</a>)</li> <li><a href="ff0a3f89c2"><code>ff0a3f8</code></a> Add back build tags for toml-test files</li> <li><a href="7356d5f888"><code>7356d5f</code></a> Few staticcheck fixes</li> <li><a href="b1471ff6cf"><code>b1471ff</code></a> Don't allow "0_0"</li> <li><a href="847ee8a07a"><code>847ee8a</code></a> Update toml-test</li> <li><a href="461925704e"><code>4619257</code></a> Clearer errors when decoding to invalid types (<a href="https://github-redirect.dependabot.com/BurntSushi/toml/issues/332">#332</a>)</li> <li>Additional commits viewable in <a href="https://github.com/BurntSushi/toml/compare/v0.4.1...v1.0.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
208 lines
10 KiB
Modula-2
208 lines
10 KiB
Modula-2
module github.com/tendermint/tendermint
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.0.0
|
|
github.com/adlio/schema v1.2.3
|
|
github.com/btcsuite/btcd v0.22.0-beta
|
|
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce
|
|
github.com/fortytw2/leaktest v1.3.0
|
|
github.com/go-kit/kit v0.12.0
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/golang/protobuf v1.5.2
|
|
github.com/golangci/golangci-lint v1.43.0
|
|
github.com/google/orderedcode v0.0.1
|
|
github.com/google/uuid v1.3.0
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
|
|
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
|
|
github.com/lib/pq v1.10.4
|
|
github.com/libp2p/go-buffer-pool v0.0.2
|
|
github.com/mroth/weightedrand v0.4.1
|
|
github.com/oasisprotocol/curve25519-voi v0.0.0-20210609091139-0a56a4bca00b
|
|
github.com/ory/dockertest v3.3.5+incompatible
|
|
github.com/prometheus/client_golang v1.11.0
|
|
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0
|
|
github.com/rs/cors v1.8.2
|
|
github.com/rs/zerolog v1.26.1
|
|
github.com/snikch/goodman v0.0.0-20171125024755-10e37e294daa
|
|
github.com/spf13/cobra v1.3.0
|
|
github.com/spf13/viper v1.10.1
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/tendermint/tm-db v0.6.6
|
|
github.com/vektra/mockery/v2 v2.9.4
|
|
golang.org/x/crypto v0.0.0-20211215165025-cf75a172585e
|
|
golang.org/x/net v0.0.0-20211208012354-db4efeb81f4b
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
|
google.golang.org/grpc v1.43.0
|
|
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
|
|
pgregory.net/rapid v0.4.7
|
|
)
|
|
|
|
require (
|
|
4d63.com/gochecknoglobals v0.1.0 // indirect
|
|
github.com/Antonboom/errname v0.1.5 // indirect
|
|
github.com/Antonboom/nilnil v0.1.0 // indirect
|
|
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
|
|
github.com/DataDog/zstd v1.4.1 // indirect
|
|
github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 // indirect
|
|
github.com/Masterminds/semver v1.5.0 // indirect
|
|
github.com/Microsoft/go-winio v0.5.1 // indirect
|
|
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
|
|
github.com/OpenPeeDeeP/depguard v1.0.1 // indirect
|
|
github.com/alexkohler/prealloc v1.0.0 // indirect
|
|
github.com/ashanbrown/forbidigo v1.2.0 // indirect
|
|
github.com/ashanbrown/makezero v0.0.0-20210520155254-b6261585ddde // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/bkielbasa/cyclop v1.2.0 // indirect
|
|
github.com/blizzy78/varnamelen v0.3.0 // indirect
|
|
github.com/bombsimon/wsl/v3 v3.3.0 // indirect
|
|
github.com/breml/bidichk v0.1.1 // indirect
|
|
github.com/butuzov/ireturn v0.1.1 // indirect
|
|
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
|
|
github.com/cespare/xxhash v1.1.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/charithe/durationcheck v0.0.9 // indirect
|
|
github.com/chavacava/garif v0.0.0-20210405164556-e8a0a408d6af // indirect
|
|
github.com/containerd/continuity v0.2.1 // indirect
|
|
github.com/daixiang0/gci v0.2.9 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/denis-tingajkin/go-header v0.4.2 // indirect
|
|
github.com/dgraph-io/badger/v2 v2.2007.2 // indirect
|
|
github.com/dgraph-io/ristretto v0.0.3-0.20200630154024-f66de99634de // indirect
|
|
github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2 // indirect
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
|
github.com/docker/go-units v0.4.0 // indirect
|
|
github.com/dustin/go-humanize v1.0.0 // indirect
|
|
github.com/esimonov/ifshort v1.0.3 // indirect
|
|
github.com/ettle/strcase v0.1.1 // indirect
|
|
github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51 // indirect
|
|
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect
|
|
github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870 // indirect
|
|
github.com/fatih/color v1.13.0 // indirect
|
|
github.com/fatih/structtag v1.2.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
github.com/fzipp/gocyclo v0.3.1 // indirect
|
|
github.com/go-critic/go-critic v0.6.1 // indirect
|
|
github.com/go-toolsmith/astcast v1.0.0 // indirect
|
|
github.com/go-toolsmith/astcopy v1.0.0 // indirect
|
|
github.com/go-toolsmith/astequal v1.0.1 // indirect
|
|
github.com/go-toolsmith/astfmt v1.0.0 // indirect
|
|
github.com/go-toolsmith/astp v1.0.0 // indirect
|
|
github.com/go-toolsmith/strparse v1.0.0 // indirect
|
|
github.com/go-toolsmith/typep v1.0.2 // indirect
|
|
github.com/go-xmlfmt/xmlfmt v0.0.0-20191208150333-d5b6f63a941b // indirect
|
|
github.com/gobwas/glob v0.2.3 // indirect
|
|
github.com/gofrs/flock v0.8.1 // indirect
|
|
github.com/golang/snappy v0.0.3 // indirect
|
|
github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2 // indirect
|
|
github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a // indirect
|
|
github.com/golangci/go-misc v0.0.0-20180628070357-927a3d87b613 // indirect
|
|
github.com/golangci/gofmt v0.0.0-20190930125516-244bba706f1a // indirect
|
|
github.com/golangci/lint-1 v0.0.0-20191013205115-297bf364a8e0 // indirect
|
|
github.com/golangci/maligned v0.0.0-20180506175553-b1d89398deca // indirect
|
|
github.com/golangci/misspell v0.3.5 // indirect
|
|
github.com/golangci/revgrep v0.0.0-20210930125155-c22e5001d4f2 // indirect
|
|
github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4 // indirect
|
|
github.com/google/btree v1.0.0 // indirect
|
|
github.com/google/go-cmp v0.5.6 // indirect
|
|
github.com/gordonklaus/ineffassign v0.0.0-20210225214923-2e10b2664254 // indirect
|
|
github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
|
|
github.com/gostaticanalysis/comment v1.4.2 // indirect
|
|
github.com/gostaticanalysis/forcetypeassert v0.0.0-20200621232751-01d4955beaa5 // indirect
|
|
github.com/gostaticanalysis/nilerr v0.1.1 // indirect
|
|
github.com/hashicorp/errwrap v1.0.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/jgautheron/goconst v1.5.1 // indirect
|
|
github.com/jingyugao/rowserrcheck v1.1.1 // indirect
|
|
github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect
|
|
github.com/jmhodges/levigo v1.0.0 // indirect
|
|
github.com/julz/importas v0.0.0-20210419104244-841f0c0fe66d // indirect
|
|
github.com/kisielk/errcheck v1.6.0 // indirect
|
|
github.com/kisielk/gotool v1.0.0 // indirect
|
|
github.com/kulti/thelper v0.4.0 // indirect
|
|
github.com/kunwardeep/paralleltest v1.0.3 // indirect
|
|
github.com/kyoh86/exportloopref v0.1.8 // indirect
|
|
github.com/ldez/gomoddirectives v0.2.2 // indirect
|
|
github.com/ldez/tagliatelle v0.2.0 // indirect
|
|
github.com/magiconair/properties v1.8.5 // indirect
|
|
github.com/maratori/testpackage v1.0.1 // indirect
|
|
github.com/matoous/godox v0.0.0-20210227103229-6504466cf951 // indirect
|
|
github.com/mattn/go-colorable v0.1.12 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/mattn/go-runewidth v0.0.9 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/mbilski/exhaustivestruct v1.2.0 // indirect
|
|
github.com/mgechev/dots v0.0.0-20210922191527-e955255bf517 // indirect
|
|
github.com/mgechev/revive v1.1.2 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.4.3 // indirect
|
|
github.com/moricho/tparallel v0.2.1 // indirect
|
|
github.com/nakabonne/nestif v0.3.1 // indirect
|
|
github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354 // indirect
|
|
github.com/nishanths/exhaustive v0.2.3 // indirect
|
|
github.com/nishanths/predeclared v0.2.1 // indirect
|
|
github.com/olekukonko/tablewriter v0.0.5 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/opencontainers/image-spec v1.0.2 // indirect
|
|
github.com/opencontainers/runc v1.0.3 // indirect
|
|
github.com/pelletier/go-toml v1.9.4 // indirect
|
|
github.com/phayes/checkstyle v0.0.0-20170904204023-bfd46e6a821d // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/polyfloyd/go-errorlint v0.0.0-20210722154253-910bb7978349 // 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/quasilyte/go-ruleguard v0.3.13 // indirect
|
|
github.com/quasilyte/regex/syntax v0.0.0-20200407221936-30656e2c4a95 // indirect
|
|
github.com/ryancurrah/gomodguard v1.2.3 // indirect
|
|
github.com/ryanrolds/sqlclosecheck v0.3.0 // indirect
|
|
github.com/sanposhiho/wastedassign/v2 v2.0.6 // indirect
|
|
github.com/securego/gosec/v2 v2.9.1 // indirect
|
|
github.com/shazow/go-diff v0.0.0-20160112020656-b6b7b6733b8c // indirect
|
|
github.com/sirupsen/logrus v1.8.1 // indirect
|
|
github.com/sivchari/tenv v1.4.7 // indirect
|
|
github.com/sonatard/noctx v0.0.1 // indirect
|
|
github.com/sourcegraph/go-diff v0.6.1 // indirect
|
|
github.com/spf13/afero v1.6.0 // indirect
|
|
github.com/spf13/cast v1.4.1 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/ssgreg/nlreturn/v2 v2.2.1 // indirect
|
|
github.com/stretchr/objx v0.1.1 // indirect
|
|
github.com/subosito/gotenv v1.2.0 // indirect
|
|
github.com/sylvia7788/contextcheck v1.0.4 // indirect
|
|
github.com/syndtr/goleveldb v1.0.1-0.20200815110645-5c35d600f0ca // indirect
|
|
github.com/tdakkota/asciicheck v0.0.0-20200416200610-e657995f937b // indirect
|
|
github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c // indirect
|
|
github.com/tetafro/godot v1.4.11 // indirect
|
|
github.com/timakin/bodyclose v0.0.0-20200424151742-cb6215831a94 // indirect
|
|
github.com/tomarrell/wrapcheck/v2 v2.4.0 // indirect
|
|
github.com/tommy-muehle/go-mnd/v2 v2.4.0 // indirect
|
|
github.com/ultraware/funlen v0.0.3 // indirect
|
|
github.com/ultraware/whitespace v0.0.4 // indirect
|
|
github.com/uudashr/gocognit v1.0.5 // indirect
|
|
github.com/yeya24/promlinter v0.1.0 // indirect
|
|
go.etcd.io/bbolt v1.3.6 // indirect
|
|
golang.org/x/mod v0.5.0 // indirect
|
|
golang.org/x/sys v0.0.0-20211210111614-af8b64212486 // indirect
|
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/tools v0.1.7 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect
|
|
google.golang.org/protobuf v1.27.1 // indirect
|
|
gopkg.in/ini.v1 v1.66.2 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
honnef.co/go/tools v0.2.1 // indirect
|
|
mvdan.cc/gofumpt v0.1.1 // indirect
|
|
mvdan.cc/interfacer v0.0.0-20180901003855-c20040233aed // indirect
|
|
mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b // indirect
|
|
mvdan.cc/unparam v0.0.0-20210104141923-aac4ce9116a7 // indirect
|
|
)
|