1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Copyright 2020 Contributors to the Parsec project. // SPDX-License-Identifier: Apache-2.0 //! Common variables. /// The project name from Cargo. pub const PROJECT_NAME: &str = env!("CARGO_PKG_NAME"); /// The project description from Cargo. pub const PROJECT_DESC: &str = env!("CARGO_PKG_DESCRIPTION"); /// The project author from Cargo. pub const PROJECT_AUTHOR: &str = env!("CARGO_PKG_AUTHORS"); /// The project version from Cargo. pub const PROJECT_VERSION: &str = env!("CARGO_PKG_VERSION");