Skip to main content

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