tagit-cfg 0.2.0

medata section of tagit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Configuration for `tagit`.

use serde::Deserialize;

#[derive(Deserialize, Default, Clone)]
#[serde(deny_unknown_fields, default, rename_all = "kebab-case")]
#[non_exhaustive]
/// Configuration for a specific package, from tool metadata section of the manifest.
pub struct TagitCfg {
    /// Ignore this package entirely.
    pub skip: bool,
    /// Do not do semver-guided retagging.
    pub skip_retag: bool,
}