ironoxide 0.10.0

A pure-Rust SDK for accessing IronCore's privacy platform
Documentation
# IronOxide- IronCore Labs Rust SDK

[![](https://img.shields.io/crates/v/ironoxide.svg)](https://crates.io/crates/ironoxide) [![](https://docs.rs/ironoxide/badge.svg)](https://docs.rs/ironoxide) [![Build Status](https://travis-ci.org/IronCoreLabs/ironoxide.svg?branch=master)](https://travis-ci.org/IronCoreLabs/ironoxide)

IronOxide is an SDK for accessing IronCore's privacy platform. It is appropriate for both client and server applications.

## Usage

To include IronOxide in your Rust application, see https://crates.io/crates/ironoxide for the most recent version.

If you are not building a Rust application, you might be interested in one of these SDKs:

- [ironoxide-java]https://github.com/IronCoreLabs/ironoxide-java - Java bindings for ironoxide. Appropriate for all JVM langauges.
- [ironoxide-scala]https://github.com/IronCoreLabs/ironoxide-scala - Scala wrappers around `ironoxide-java`.
- [ironode]https://github.com/IronCoreLabs/ironnode - NodeJS implementation of IronCore's Privacy Platform.
- [ironweb]https://github.com/IronCoreLabs/ironweb - Javascript implementation of IronCore's Privacy Platform. Appropriate for all modern browsers.

All SDKs are intended to be compatible with one another.

## API Docs and Example Usage

Please see https://ironoxide.rs

## Contributing

IronCore welcomes community participation through the issue tracker or pull request process.

#### Building

Rust (stable) and [libstd](https://doc.rust-lang.org/std/) required.

`cargo build`

It may be possible to build with `no_std`, but we haven't looked at this.
We test on a variety of architectures (including Linux-x86_64 MacOSX-x86_64, IOS-aarch64, Android-aarch64), and should generally work anywhere Rust stable works.

If you want to use `cargo watch` you will need to exclude the generated code:
```
cargo watch -i "src/proto/*" -x "build"
```

#### Running Unit Tests

IronCore has integration tests that are not runnable by the public. If you are interested in the results, [Travis runs the integration tests](TODO). If you think you need to run the integration tests on a development machine, please open an issue.

To run the unit test suite, use:

`cargo t --lib`

# License

IronOxide is licensed under the [GNU Affero General Public License](LICENSE).
We also offer commercial licenses - [email](mailto:info@ironcorelabs.com) for more information.

Copyright (c) 2019 IronCore Labs, Inc.
All rights reserved.