Unnamed repository; edit this file 'description' to name the repository.
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
{
    0: CrateData {
        root_file_id: FileId(
            1,
        ),
        edition: Edition2018,
        version: None,
        display_name: Some(
            CrateDisplayName {
                crate_name: CrateName(
                    "hello_world",
                ),
                canonical_name: "hello_world",
            },
        ),
        cfg_options: CfgOptions(
            [
                "group1_cfg=some_config",
                "group1_other_cfg=other_config",
                "group2_cfg=yet_another_config",
                "rust_analyzer",
                "test",
                "true",
            ],
        ),
        potential_cfg_options: None,
        env: Env {
            entries: {},
        },
        dependencies: [],
        origin: Local {
            repo: None,
            name: Some(
                "hello_world",
            ),
        },
        is_proc_macro: false,
        proc_macro_cwd: None,
    },
    1: CrateData {
        root_file_id: FileId(
            1,
        ),
        edition: Edition2018,
        version: None,
        display_name: Some(
            CrateDisplayName {
                crate_name: CrateName(
                    "other_crate",
                ),
                canonical_name: "other_crate",
            },
        ),
        cfg_options: CfgOptions(
            [
                "group2_cfg=fourth_config",
                "group2_cfg=yet_another_config",
                "rust_analyzer",
                "test",
                "true",
                "unrelated_cfg",
            ],
        ),
        potential_cfg_options: None,
        env: Env {
            entries: {},
        },
        dependencies: [],
        origin: Local {
            repo: None,
            name: Some(
                "other_crate",
            ),
        },
        is_proc_macro: false,
        proc_macro_cwd: None,
    },
}