mirror of
https://github.com/tendermint/tendermint.git
synced 2026-04-27 11:05:06 +00:00
Currently the top level directory contains basically all of the code for the crypto package. This PR moves the crypto code into submodules in a similar manner to what `golang/x/crypto` does. This improves code organization. Ref discussion: https://github.com/tendermint/tendermint/pull/1966 Closes #1956
12 lines
383 B
Makefile
12 lines
383 B
Makefile
gen_query_parser:
|
|
go get -u -v github.com/pointlander/peg
|
|
peg -inline -switch query.peg
|
|
|
|
fuzzy_test:
|
|
go get -u -v github.com/dvyukov/go-fuzz/go-fuzz
|
|
go get -u -v github.com/dvyukov/go-fuzz/go-fuzz-build
|
|
go-fuzz-build github.com/tendermint/tendermint/libs/pubsub/query/fuzz_test
|
|
go-fuzz -bin=./fuzz_test-fuzz.zip -workdir=./fuzz_test/output
|
|
|
|
.PHONY: gen_query_parser fuzzy_test
|