pub fn cuicui_chirp_path(alternate_path: Path)
Expand description

Specify which path to use for the cuicui_chirp crate.

Default: ::cuicui_chirp

The default should work all the time if you are using cuicui_chirp directly.

However, if you are renaming the crate or re-exporting it, you need to explicitly rename it.

Example

use crate_reexporting::chirp::parse_dsl_impl;

#[parse_dsl_impl(cuicui_chirp_path = crate_reexporting::chirp)]
impl MyDsl {
    // ...