dev_scripts/consts.rs
1//! Constants for the application.
2
3/// The name of the project ("alpm").
4pub(crate) const PROJECT_NAME: &str = "alpm";
5/// The name of the directory component for all test artifacts ("testing").
6pub(crate) const TESTING_DIR: &str = "testing";
7/// The name of the download directory ("download").
8pub(crate) const DOWNLOAD_DIR: &str = "download";
9/// The name of the directory for package sources ("pkgsrc").
10pub(crate) const PKGSRC_DIR: &str = "pkgsrc";
11/// The name of the directory for AUR sources ("aur").
12pub(crate) const AUR_DIR: &str = "aur";
13/// The name of the directory component for packages - either downloads or other artifacts
14/// ("packages").
15pub(crate) const PACKAGES_DIR: &str = "packages";
16/// The name of the directory component for repository databases - either downloads or other
17/// artifacts ("databases").
18pub(crate) const DATABASES_DIR: &str = "databases";