1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
# find-crate
[](https://crates.io/crates/find-crate)
[](https://docs.rs/find-crate)
[](#license)
[](https://www.rust-lang.org)
[](https://github.com/taiki-e/find-crate/actions?query=workflow%3ACI+branch%3Amaster)
Find the crate name from the current `Cargo.toml`.
When writing declarative macros, `$crate` representing the current crate is
very useful, but procedural macros do not have this. If you know the current
name of the crate you want to use, you can do the same thing as `$crate`.
This crate provides the features to make it easy.
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
find-crate = "0.5"
```
*Compiler support: requires rustc 1.31+*
## Examples
[`find_crate`] gets the crate name from the current `Cargo.toml`.
```rust
use find_crate::find_crate;
use proc_macro2::{Ident, Span, TokenStream};
use quote::quote;
fn import() -> TokenStream {
let name = find_crate(|s| s == "foo").unwrap().name;
let name = Ident::new(&name, Span::call_site());
// If your proc-macro crate is 2018 edition, use `quote!(use #name as _foo;)` instead.
quote!(extern crate #name as _foo;)
}
```
As in this example, it is easy to handle cases where proc-macro is exported
from multiple crates.
```rust
use find_crate::find_crate;
use proc_macro2::{Ident, Span, TokenStream};
use quote::quote;
fn import() -> TokenStream {
let name = find_crate(|s| s == "foo" || s == "foo-core").unwrap().name;
let name = Ident::new(&name, Span::call_site());
// If your proc-macro crate is 2018 edition, use `quote!(use #name as _foo;)` instead.
quote!(extern crate #name as _foo;)
}
```
Using [`Manifest`] to search for multiple crates. It is much more efficient
than using [`find_crate`] for each crate.
```rust
use find_crate::Manifest;
use proc_macro2::{Ident, Span, TokenStream};
use quote::{format_ident, quote};
const CRATE_NAMES: &[&[&str]] = &[
&["foo", "foo-core"],
&["bar", "bar-util", "bar-core"],
&["baz"],
];
fn imports() -> TokenStream {
let mut tts = TokenStream::new();
let manifest = Manifest::new().unwrap();
for names in CRATE_NAMES {
let name = manifest.find(|s| names.iter().any(|x| s == *x)).unwrap().name;
let name = Ident::new(&name, Span::call_site());
let import_name = format_ident!("_{}", names[0]);
// If your proc-macro crate is 2018 edition, use `quote!(use #name as #import_name;)` instead.
tts.extend(quote!(extern crate #name as #import_name;));
}
tts
}
```
By default it will be searched from `dependencies` and `dev-dependencies`.
Also, [`find_crate`] and [`Manifest::new`] read `Cargo.toml` in
[`CARGO_MANIFEST_DIR`] as manifest.
## Alternatives
If you write function-like procedural macros, [you can combine it with
declarative macros to support both crate renaming and macro
re-exporting.][rust-lang/futures-rs#2124]
This crate is intended to provide more powerful features such as support
for multiple crate names and versions. For general purposes,
[proc-macro-crate], which provides a simpler API, may be easier to use.
[`Manifest::new`]: https://docs.rs/find-crate/0.6/find_crate/struct.Manifest.html#method.new
[`Manifest`]: https://docs.rs/find-crate/0.6/find_crate/struct.Manifest.html
[`find_crate`]: https://docs.rs/find-crate/0.6/find_crate/fn.find_crate.html
[`CARGO_MANIFEST_DIR`]: https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-crates
[rust-lang/futures-rs#2124]: https://github.com/rust-lang/futures-rs/pull/2124
[proc-macro-crate]: https://github.com/bkchr/proc-macro-crate
## License
Licensed under either of [Apache License, Version 2.0](LICENSE-APACHE) or
[MIT license](LICENSE-MIT) at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall
be dual licensed as above, without any additional terms or conditions.
|