changeset-manifest 0.0.3

Format-preserving Cargo.toml read/write operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod config;
mod error;
mod reader;
mod writer;

pub use config::{
    ChangelogLocation, ComparisonLinks, InitConfig, MetadataSection, NoneBumpBehavior, TagFormat,
    ZeroVersionBehavior,
};
pub use error::ManifestError;
pub use reader::{
    has_inherited_version, has_workspace_package_version, read_document, read_version,
    read_workspace_version,
};
pub use writer::{
    remove_workspace_version, update_dependency_version, verify_version, write_metadata_section,
    write_version, write_workspace_version,
};