cargo_release/
lib.rs

1//! # Semver Compatibility
2//!
3//! cargo-release's versioning tracks compatibility for the binaries, not the API.  We upload to
4//! crates.io to distribute the binary.  If using this as a library, be sure to pin the version
5//! with a `=` version requirement operator.
6
7#![cfg_attr(docsrs, feature(doc_cfg))]
8#![warn(clippy::print_stderr)]
9#![warn(clippy::print_stdout)]
10
11pub mod config;
12pub mod error;
13pub mod ops;
14pub mod steps;
15
16#[doc = include_str!("../README.md")]
17#[cfg(doctest)]
18pub struct ReadmeDoctests;