Crates.io | croc-look |
lib.rs | croc-look |
version | 0.1.3 |
source | src |
created_at | 2022-08-10 14:44:24.10012 |
updated_at | 2022-08-11 09:21:15.10013 |
description | a tool to expand macros and watch them in real time |
homepage | |
repository | https://github.com/Daksh14/croc-look |
max_upload_size | |
id | 642672 |
size | 74,687 |
croc-look is a tool to make testing and debuging proc macros easier by these two features
croc-look allows you to narrow down your search and also provide real time view of the generated code.
croc-look requires a nightly toolchain installed, it does not need to be the default toolchain
rustup install nightly
Then
cargo install croc-look
--trait-impl
or -t
: Defines the trait you want to see the expansion off, this is gonna be the trait your derive macro is implementing or it could be
any other trait you want to see the expansion off. For example#[derive(Clone, Debug, MyTrait)]
struct<T> {
...
}
So the value for this flag can be either Clone
, Debug
or whatever trait your MyTrait
derive macro is implementing
--impl-for
or -i
: This helps you narrow down your search for a trait impl for the flag mentioned above. If you have multiple structs deriving your trait then you can do croc-look --trait-impl Clone -i <your-struct-name>
and get the impl for the struct you want.
--structure
or -s
: If you want to expand a particlar struct. This is useful when a macro is manupilating the struct itself, like adding fields, etc.
--path
or -p
: (requies cargo expand to be installed) Use cargo expand <path>
internally to narrow down code to modules. eg croc-look -p cmd -t Clone -i Context
(This finds the impl Clone for Context in cmd module)
--function
or -f
: For expanding a function.
--binary
or -b
: To expand a cargo --bin BINARY
, if not specified then --lib
is used
--watch
or -w
: This starts watching the directory/file you want to watch, this also opens up an interactive TUI which has support for live reloading changes as you do them in your proc-macro project.
cargo expand doesn't allow you to view a whole trait impl to check generics or watch particular code blocks. The motive of croc-look is to narroy arry down your search to a simple single body and reduce cluter.
You can use the --path
flag to use cargo expand <path>
to narrow down searches module level