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
pub mod compiler;
pub const DEPENDENCY: &str = "dependency";
pub const DEPENDENCY_SHORT: &str = "d";
pub const SENDER: &str = "sender";
pub const SENDER_SHORT: &str = "s";
pub const OUT_DIR: &str = "out-dir";
pub const OUT_DIR_SHORT: &str = "o";
pub const DEFAULT_OUTPUT_DIR: &str = "build";
pub const NO_SHADOW: &str = "no-shadow";
pub const NO_SHADOW_SHORT: &str = "S";
pub const SOURCE_MAP: &str = "source-map";
pub const SOURCE_MAP_SHORT: &str = "m";
pub const TEST: &str = "test";
pub const TEST_SHORT: &str = "t";
pub const COLOR_MODE_ENV_VAR: &str = "COLOR_MODE";
pub const MOVE_COMPILED_INTERFACES_DIR: &str = "mv_interfaces";
pub const COMPILED_NAMED_ADDRESS_MAPPING: &str = "compiled-module-address-name";