oceanpkg

Crates.iooceanpkg
lib.rsoceanpkg
version0.0.11
sourcesrc
created_at2019-05-25 02:44:18.922164
updated_at2019-12-15 05:51:36.918486
descriptionClient library for the Ocean package manager.
homepagehttps://www.oceanpkg.org
repositoryhttps://github.com/oceanpkg/ocean
max_upload_size
id136841
size154,596
Nikolai Vazquez (nvzqz)

documentation

https://docs.rs/oceanpkg

README

Ocean logo

Ocean Library

Travis CI badge Crates.io badge

The oceanpkg library serves as core reusable components for:

  • The ocean CLI client
  • Backend web services

Note: 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.

Install

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;

Usage

See documentation.

Testing

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
Commit count: 259

cargo fmt