Skip to content

Commit e744211

Browse files
authored
Update readme for build changes (tokio-rs#689)
1 parent 11b5406 commit e744211

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

FUZZING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ To run the afl fuzz tests, first install cargo-afl:
1111

1212
Then build a fuzz target and run afl on it:
1313

14-
cd afl/<target>/
14+
cd fuzz/afl/<target>/
1515
cargo afl build --bin fuzz-target
1616
cargo afl fuzz -i in -o out target/debug/fuzz-target
1717

1818
To reproduce a crash:
1919

20-
cd afl/<target>/
20+
cd fuzz/afl/<target>/
2121
cargo build --bin reproduce
2222
cargo run --bin reproduce -- out/crashes/<crashfile>
2323

README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,13 @@ possible.
5656

5757
### `protoc`
5858

59-
It's recommended to install `protoc` locally in your path to improve build times.
60-
Prost uses `protoc` to parse protobuf files and will attempt to compile protobuf
61-
from source requiring a C++ toolchain. For more info checkout the [`prost-build`](prost-build)
62-
docs.
59+
With `prost-build` v0.11 release, `protoc` will be required to invoke
60+
`compile_protos` (unless `skip_protoc` is enabled). Prost will no longer provide
61+
bundled a `protoc` or attempt to compile `protoc` for users. For install
62+
instructions for `protoc` please check out the [protobuf install] instructions.
63+
64+
[protobuf install]: https://github.com/protocolbuffers/protobuf#protocol-compiler-installation
65+
6366

6467
### Packages
6568

0 commit comments

Comments
 (0)