Crates.io | safe_client |
lib.rs | safe_client |
version | 0.2.1 |
source | src |
created_at | 2015-08-28 11:15:06.844013 |
updated_at | 2015-12-11 23:55:55.315022 |
description | SAFE Client API library |
homepage | http://maidsafe.net |
repository | https://github.com/maidsafe/safe_client |
max_upload_size | |
id | 2939 |
size | 276,371 |
Primary Maintainer: Spandan Sharma (spandan.sharma@maidsafe.net)
Secondary Maintainer: Krishna Kumar (krishna.kumar@maidsafe.net)
Crate | Linux/OS X | Windows | Coverage | Issues |
---|---|---|---|---|
API Documentation - master branch | SAFE Network System Documentation | MaidSafe website | Safe Community site |
---|
###Pre-requisite: libsodium is a native dependency for sodiumxoide. Thus, install sodium by following the instructions here.
For windows:
libsodium.a
for x86/x64 from the corresponding folder in the archive to your local filesystem%PATH%
. (PATH=%PATH%;<path to extracted libsodium.a dir>
)###Build Instructions:
safe_client
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