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
pub mod compiler;
pub const DEPENDENCY: &str = "dependency";
pub const DEPENDENCY_SHORT: char = 'd';
pub const SENDER: &str = "sender";
pub const SENDER_SHORT: char = 's';
pub const OUT_DIR: &str = "out-dir";
pub const OUT_DIR_SHORT: char = 'o';
pub const DEFAULT_OUTPUT_DIR: &str = "build";
pub const SHADOW: &str = "shadow";
pub const SHADOW_SHORT: char = 'S';
pub const SOURCE_MAP: &str = "source-map";
pub const SOURCE_MAP_SHORT: char = 'm';
pub const TEST: &str = "test";
pub const TEST_SHORT: char = 't';
pub const FLAVOR: &str = "flavor";
pub const BYTECODE_VERSION: &str = "bytecode-version";
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";