Skip to main content

omr_bumper/
lib.rs

1//! omr-bumper is not intended to be a library, but it can be embedded into your code
2//!
3//! Run `omr-bumper --help` for more info
4//!
5//! *Note:* This is work-in-progress, and _works for us_. Use with care!
6//!
7//! Sensible pull-requests, and issues welcome at: (https://github.com/AndreasOM/omr-bumper)
8
9
10mod release;
11pub use release::Release as Release;
12
13
14mod cargo;
15mod manifest;
16mod repository;
17