//! Context.
//!
//! The `context` section provides information about the project to `changelogging`.
//!
//! It is always required, and the fields are as follows:
//!
//! - `name` is the name of the project;
//! - `version` is the version of the project;
//! - `url` is the URL of the project.
//!
//! Here is an example of this section:
//!
//! ```toml
//! [context]
//! name = "changelogging"
//! version = "0.7.0"
//! url = "https://github.com/nekitdev/changelogging"
//! ```
//!
//! This section is represented by the [`Context`] structure.
use Cow;
use ;
/// Represents project contexts.