| Crates.io | maidsafe_client |
| lib.rs | maidsafe_client |
| version | 0.1.2 |
| created_at | 2015-03-12 12:21:36.994365+00 |
| updated_at | 2015-12-11 23:54:10.497015+00 |
| description | Maidsafe Client API library |
| homepage | http://maidsafe.net |
| repository | https://github.com/maidsafe/maidsafe_client |
| max_upload_size | |
| id | 1559 |
| size | 178,497 |
Primary Maintainer: Spandan Sharma (spandan.sharma@maidsafe.net)
Secondary Maintainer: Krishna Kumar (krishna.kumar@maidsafe.net)
| Crate | Linux | Windows | OSX | Coverage |
|---|---|---|---|---|
| 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, download and use the prebuilt mingw library. Extract and place the libsodium.a file in "bin\x86_64-pc-windows-gnu" for 64bit System, or "bin\i686-pc-windows-gnu" for a 32bit system.
###Build Instructions: Maidsafe-Client interfaces conditionally with either the actual routing crate or the Mock used for efficient local testing.
To use it with the Mock (default) do:
cargo build
cargo test
etc
To interface it with actual routing, do:
cargo build --features "USE_ACTUAL_ROUTING"
cargo test --features "USE_ACTUAL_ROUTING"
etc
##TODO (rust_3 sprint)