Crates.io | fix-getters-def |
lib.rs | fix-getters-def |
version | 0.3.2 |
source | src |
created_at | 2021-04-11 13:41:32.608102 |
updated_at | 2021-05-31 09:52:16.868495 |
description | Fix getters definition by removing the get prefix when applicable |
homepage | |
repository | https://github.com/fengalin/fix-getters |
max_upload_size | |
id | 382023 |
size | 73,318 |
This package is a tool to fix getters definitions by removing the get
prefix
according to rules
.
It also inserts a [doc(alias = "get_field")]
attribute where necessary so that
the new name for the getter can be retrieved from the documentations by searching
for previous name.
See the workspace documentation
for more details on fix-getters
.
You can install fix-getters-def
using cargo
, which allows invoking the tool
as a regular command.
cargo install fix-getters-def
cargo install --path fix-def
Warning: by default, fix-getters-def
will overwrite existing files.
See below if you want to check the output in a separate directory.
This will fix the project in current directory:
fix-getters-def
cargo fmt
Note that the call sites won't be changed. Use fix-calls for that.
If you wish to test the result first, run:
fix-getters-def _PROJECT_PATH_ _OUTPUT_PATH_
The project files won't be changed: modified files will be generated under
_OUTPUT_PATH_
. Note however that only the modified files are generated, so
you won't be able to run cargo fmt
.
Use the --conservative
option (short -c
) if you prefer applying a
conservative approach based on the get
function signature. By default, all
get
functions are renamed.
See the workspace documentation for more details on the conservative identification mode.
By default, fix-getters-def
adds a doc alias attribute with the original name
for the renamed functions.
Use the --no-doc-aliases
option (short -n
) if you don't want to generate the
doc alias attributes.
Prior to version 0.3.1
, doc aliases were added only if the --doc-alias
option (short -d
) was provided. This option is now deprecated and will be
removed in the next major version.
To uninstall, use:
cargo uninstall fix-getters-def
This crate is licensed under either of
at your option.