oceanpkg 0.0.11

Client library for the Ocean package manager.
Documentation
//! Version 1 of Ocean's web API.

/// The default URL to which API calls are made: `https://api.oceanpkg.org/v1/`.
pub const DEFAULT_URL: &str = "https://api.oceanpkg.org/v1/";

#[cfg(feature = "reqwest")]
mod download;

#[cfg(feature = "reqwest")]
mod login;

#[cfg(feature = "reqwest")]
mod ship;

#[cfg(feature = "reqwest")]
#[doc(inline)]
pub use self::{
    download::*,
    login::*,
    ship::*,
};