diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2022-08-09 05:05:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-09 05:05:21 +0000 |
commit | 9f27d8be6b3bf3ac0c1ed36c8ef3ead893f02ca4 (patch) | |
tree | 3e22cfe5e8029c4f8eba7e09dbf7430a6e09a0ab /docs | |
parent | 012c20f47b14e0d55f3761fabb1e907d3d25987e (diff) | |
parent | 4256d026d06f33e6221544bba719d80bc536f815 (diff) | |
download | gfold-9f27d8be6b3bf3ac0c1ed36c8ef3ead893f02ca4.zip |
Merge #206
206: Switch to cargo workspace r=nickgerace a=nickgerace
Primary:
- Switch to cargo workspace to replace xtask, make, etc.
- Add debug symbol stripping
Misc:
- Upgrade all packages
- Replace entries iterator with "next" due to the following PR:
https://github.com/rust-lang/git2-rs/pull/854
- Remove "rustfmt.toml"
Fixes #207
Co-authored-by: Nick Gerace <nickagerace@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/DEVELOPING.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/DEVELOPING.md b/docs/DEVELOPING.md index 929b42c..d4ed78e 100644 --- a/docs/DEVELOPING.md +++ b/docs/DEVELOPING.md @@ -30,9 +30,13 @@ cargo fix --all-targets --all-features --allow-dirty --allow-staged cargo clippy --fix --all-features --all-targets --allow-dirty --allow-staged ``` -## Running Performance Testing Scripts +## Running Performance Tests -For performance testing, navigate to the [README](../scripts/README.md) to get start. +See available packages with the following command: + +```shell +cargo run -p +``` ## Optional Checks |