oceanpkg_shared/lib.rs
1//! Shared reusable library for the [Ocean package manager][home].
2//!
3//! This library is meant to be used internally by Ocean's crates, and not meant
4//! for use outside of this ecosystem.
5//!
6//! [home]: https://www.oceanpkg.org
7//! [CLI]: https://en.wikipedia.org/wiki/Command-line_interface
8//! [GUI]: https://en.wikipedia.org/wiki/Graphical_user_interface
9
10#![deny(missing_docs)]
11
12#![doc(html_root_url = "https://docs.rs/oceanpkg-shared/0.1.0")]
13#![doc(html_logo_url = "https://www.oceanpkg.org/static/images/ocean-logo.svg")]
14
15pub mod ext;