1 2 3 4 5 6 7 8 9 10 11 12
pub const MANIFEST_FILE_NAME: &str = "Forc.toml";
pub const TEST_MANIFEST_FILE_NAME: &str = "Cargo.toml";
pub const TEST_DIRECTORY: &str = "tests/";
pub const SWAY_EXTENSION: &str = "sw";
pub const FORC_DEPENDENCIES_DIRECTORY: &str = ".forc";
pub const SRC_DIR: &str = "src";
pub const SWAY_PREDICATE: &str = "predicate";
pub const SWAY_LIBRARY: &str = "library";
pub const SWAY_SCRIPT: &str = "script";
pub const SWAY_CONTRACT: &str = "contract";
pub const DEFAULT_NODE_URL: &str = "127.0.0.1:4000";
pub const LANGUAGE_NAME: &str = "Sway";