| Crates.io | oceanpkg |
| lib.rs | oceanpkg |
| version | 0.0.11 |
| created_at | 2019-05-25 02:44:18.922164+00 |
| updated_at | 2019-12-15 05:51:36.918486+00 |
| description | Client library for the Ocean package manager. |
| homepage | https://www.oceanpkg.org |
| repository | https://github.com/oceanpkg/ocean |
| max_upload_size | |
| id | 136841 |
| size | 154,596 |
The oceanpkg library serves as core reusable components for:
ocean CLI clientNote: All shell commands assume that the current working directory is lib.
This can be done by running cd lib to "change directory" from the root folder.
This library is written in Rust and is meant to be used within a cargo
project. See rustup.rs for installing Rust and cargo.
It is made available on crates.io and can be used by adding the
following to your project's Cargo.toml:
[dependencies]
oceanpkg = "0.0.11"
and this to your crate root (main.rs or lib.rs):
extern crate oceanpkg;
See documentation.
Various test cases are covered throughout this library. They can all be found by
searching for mod tests within the lib folder.
To perform these tests, simply run:
cargo test