1## Steps for updating this crate
2
31.  Run `tools/external_updater/updater.sh update rust/crates/openssl`.
42.  `external/rust/crates/openssl-macros` should also be updated at the same time.
5
6## Generating patch files
7
8If you make changes to this repo that is not in upstream `rust-openssl` yet, please generate a
9patch file to keep track of those changes.
10
111. Commit your changes
122. Create the patch file: `git diff -u HEAD~ > <XXXX-topic>.diff` where XXXX is the number to track
13   the order of the patches to apply.
143. Amend the patch file into your CL `git add -A && git commit --amend`
15