crate-paths 0.1.3

Required library for crate-paths-cli's output
Documentation

Crate that export the Path type, necessary for the generated code by crate-paths-cli. This type implements the ToTokens trait. so you can use it like this:

use std_crate_paths::sync::Arc;

let tokens = quote! {
    let a = #Arc::new("b");
};

which will expand to:

let a = std::sync::Arc::new("b");

Optionally, exposes macros from crate-paths-macro

When the macro feature is enabled

[features]
default = []
macro = ["dep:crate-paths-macro"]