safe_core 0.4.0

SAFE Core API library
docs.rs failed to build safe_core-0.4.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: safe_core-0.43.0

safe_core

Primary Maintainer: Spandan Sharma (spandan.sharma@maidsafe.net)

Secondary Maintainer: Krishna Kumar (krishna.kumar@maidsafe.net)

Crate Linux/OS X Windows Coverage Issues
Build Status Build status Coverage Status Stories in Ready
API Documentation - master branch SAFE Network System Documentation MaidSafe website SAFE Network Forum

Prerequisite

libsodium is a native dependency, and can be installed by following the instructions for Windows or for OS X and Linux.

Build Instructions

safe_core can interface conditionally against either the routing crate or a mock used for local testing.

To use it with the Mock:

cargo build --features "use-mock-routing"
cargo test --features "use-mock-routing"

To interface it with actual routing (default):

cargo build
cargo test