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_parser",
9    "basic-toml",
10    "block-buffer",
11    "bumpalo",
12    "cfg-if",
13    "cpufeatures",
14    "crypto-common",
15    "darling",
16    "darling_core",
17    "derive_builder_core",
18    "digest",
19    "fluent-bundle",
20    "fluent-langneg",
21    "fluent-syntax",
22    "fnv",
23    "generic-array",
24    "heck",
25    "ident_case",
26    "intl-memoizer",
27    "intl_pluralrules",
28    "libc",
29    "log",
30    "memchr",
31    "minimal-lexical",
32    "nom",
33    "once_cell",
34    "pest",
35    "pest_generator",
36    "pest_meta",
37    "proc-macro2",
38    "quote",
39    "rustc-hash",
40    "self_cell",
41    "serde",
42    "sha2",
43    "smallvec",
44    "stable_deref_trait",
45    "strsim",
46    "syn",
47    "synstructure",
48    "thiserror",
49    "tinystr",
50    "type-map",
51    "typenum",
52    "ucd-trie",
53    "unic-langid",
54    "unic-langid-impl",
55    "unic-langid-macros",
56    "unicode-ident",
57    "unicode-width",
58    "version_check",
59    "wasm-bindgen-backend",
60    "wasm-bindgen-macro-support",
61    "wasm-bindgen-shared",
62    "winnow",
63    "yoke",
64    "zerofrom",
65    "zerovec",
66    // tidy-alphabetical-end
67];