sos_artifact/
lib.rs

1#![deny(missing_docs)]
2#![forbid(unsafe_code)]
3//! Release artifact meta data for the [Save Our Secrets](https://saveoursecrets.com) SDK.
4
5pub use semver;
6
7mod artifact;
8mod error;
9mod release;
10
11pub use artifact::*;
12pub use error::Error;
13pub use release::*;