1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Client library for the [Ocean package manager][home].
//!
//! This library is meant to be used by Ocean's [CLI], [GUI], and web services.
//!
//! [home]: https://www.oceanpkg.org
//! [CLI]: https://en.wikipedia.org/wiki/Command-line_interface
//! [GUI]: https://en.wikipedia.org/wiki/Graphical_user_interface

#![deny(missing_docs)]

#![doc(html_root_url = "https://docs.rs/oceanpkg/0.0.11")]
#![doc(html_logo_url = "https://www.oceanpkg.org/static/images/ocean-logo.svg")]

extern crate oceanpkg_shared as shared;

#[macro_use] extern crate cfg_if;
#[macro_use] extern crate lazy_static;
#[macro_use] extern crate serde;
#[macro_use] extern crate static_assertions;

extern crate serde_json as json;

#[macro_use]
pub(crate) mod flexible;

pub mod api;
pub mod archive;
pub mod auth;
pub mod config;
pub mod drop;
pub mod env;
pub mod install;
pub mod system;

#[doc(inline)]
pub use self::{
    config::Config,
    drop::Drop,
};