tidy/bootstrap/src/utils/
proc_macro_deps.rs

1/// Do not update manually - use `./x.py test tidy --bless`
2/// Holds all direct and indirect dependencies of proc-macro crates in tree.
3/// See <https://github.com/rust-lang/rust/issues/134863>
4pub static CRATES: &[&str] = &[
5    // tidy-alphabetical-start
6    "annotate-snippets",
7    "anstyle",
8    "askama_derive",
9    "askama_parser",
10    "basic-toml",
11    "block-buffer",
12    "bumpalo",
13    "cfg-if",
14    "cpufeatures",
15    "crypto-common",
16    "darling",
17    "darling_core",
18    "derive_builder_core",
19    "digest",
20    "equivalent",
21    "fluent-bundle",
22    "fluent-langneg",
23    "fluent-syntax",
24    "fnv",
25    "generic-array",
26    "hashbrown",
27    "heck",
28    "ident_case",
29    "indexmap",
30    "intl-memoizer",
31    "intl_pluralrules",
32    "libc",
33    "memchr",
34    "minimal-lexical",
35    "nom",
36    "pest",
37    "pest_generator",
38    "pest_meta",
39    "proc-macro2",
40    "quote",
41    "rustc-hash",
42    "self_cell",
43    "serde",
44    "serde_core",
45    "serde_derive_internals",
46    "sha2",
47    "smallvec",
48    "stable_deref_trait",
49    "strsim",
50    "syn",
51    "synstructure",
52    "thiserror",
53    "tinystr",
54    "type-map",
55    "typenum",
56    "ucd-trie",
57    "unic-langid",
58    "unic-langid-impl",
59    "unic-langid-macros",
60    "unicode-ident",
61    "unicode-width",
62    "version_check",
63    "wasm-bindgen-macro-support",
64    "wasm-bindgen-shared",
65    "winnow",
66    "yoke",
67    "zerofrom",
68    "zerovec",
69    // tidy-alphabetical-end
70];