tidy/bootstrap/src/utils/
proc_macro_deps.rs

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
/// Do not update manually - use `./x.py test tidy --bless`
/// Holds all direct and indirect dependencies of proc-macro crates in tree.
/// See <https://github.com/rust-lang/rust/issues/134863>
pub static CRATES: &[&str] = &[
    // tidy-alphabetical-start
    "annotate-snippets",
    "anstyle",
    "basic-toml",
    "block-buffer",
    "bumpalo",
    "cfg-if",
    "cpufeatures",
    "crypto-common",
    "darling",
    "darling_core",
    "derive_builder_core",
    "digest",
    "fluent-bundle",
    "fluent-langneg",
    "fluent-syntax",
    "fnv",
    "generic-array",
    "heck",
    "ident_case",
    "intl-memoizer",
    "intl_pluralrules",
    "libc",
    "log",
    "memchr",
    "mime",
    "mime_guess",
    "minimal-lexical",
    "nom",
    "num-conv",
    "once_cell",
    "pest",
    "pest_generator",
    "pest_meta",
    "proc-macro2",
    "quote",
    "rinja_parser",
    "rustc-hash",
    "self_cell",
    "serde",
    "sha2",
    "smallvec",
    "stable_deref_trait",
    "strsim",
    "syn",
    "synstructure",
    "thiserror",
    "time-core",
    "tinystr",
    "type-map",
    "typenum",
    "ucd-trie",
    "unic-langid",
    "unic-langid-impl",
    "unic-langid-macros",
    "unicase",
    "unicode-ident",
    "unicode-width",
    "version_check",
    "wasm-bindgen-backend",
    "wasm-bindgen-macro-support",
    "wasm-bindgen-shared",
    "yoke",
    "zerofrom",
    "zerovec",
    // tidy-alphabetical-end
];