blob: 7d780120f537df62a205f21c9eb931f202354199 (
plain) (
blame)
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
|
#[cfg(not(feature = "nightly"))]
pub const MINGLING_NIGHTLY: bool = false;
#[cfg(feature = "nightly")]
pub const MINGLING_NIGHTLY: bool = true;
#[cfg(not(feature = "debug"))]
pub const MINGLING_DEBUG: bool = false;
#[cfg(feature = "debug")]
pub const MINGLING_DEBUG: bool = true;
#[cfg(not(feature = "async"))]
pub const MINGLING_ASYNC: bool = false;
#[cfg(feature = "async")]
pub const MINGLING_ASYNC: bool = true;
#[cfg(not(feature = "clap"))]
pub const MINGLING_CLAP: bool = false;
#[cfg(feature = "clap")]
pub const MINGLING_CLAP: bool = true;
#[cfg(not(feature = "dispatch_tree"))]
pub const MINGLING_DISPATCH_TREE: bool = false;
#[cfg(feature = "dispatch_tree")]
pub const MINGLING_DISPATCH_TREE: bool = true;
#[cfg(not(feature = "general_renderer"))]
pub const MINGLING_GENERAL_RENDERER: bool = false;
#[cfg(feature = "general_renderer")]
pub const MINGLING_GENERAL_RENDERER: bool = true;
#[cfg(not(feature = "repl"))]
pub const MINGLING_REPL: bool = false;
#[cfg(feature = "repl")]
pub const MINGLING_REPL: bool = true;
#[cfg(not(feature = "comp"))]
pub const MINGLING_COMP: bool = false;
#[cfg(feature = "comp")]
pub const MINGLING_COMP: bool = true;
#[cfg(not(feature = "parser"))]
pub const MINGLING_PARSER: bool = false;
#[cfg(feature = "parser")]
pub const MINGLING_PARSER: bool = true;
#[cfg(not(feature = "json_serde_fmt"))]
pub const MINGLING_JSON_SERDE_FMT: bool = false;
#[cfg(feature = "json_serde_fmt")]
pub const MINGLING_JSON_SERDE_FMT: bool = true;
#[cfg(not(feature = "yaml_serde_fmt"))]
pub const MINGLING_YAML_SERDE_FMT: bool = false;
#[cfg(feature = "yaml_serde_fmt")]
pub const MINGLING_YAML_SERDE_FMT: bool = true;
#[cfg(not(feature = "toml_serde_fmt"))]
pub const MINGLING_TOML_SERDE_FMT: bool = false;
#[cfg(feature = "toml_serde_fmt")]
pub const MINGLING_TOML_SERDE_FMT: bool = true;
#[cfg(not(feature = "ron_serde_fmt"))]
pub const MINGLING_RON_SERDE_FMT: bool = false;
#[cfg(feature = "ron_serde_fmt")]
pub const MINGLING_RON_SERDE_FMT: bool = true;
|