uplink-sys 0.8.0

Unsafe rust bindings for libuplink - the storj protocol library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! This crate provides Rust bindings to [uplink-c](https://github.com/storj/uplink-c/), the C
//! interface for the storj uplink API library.
//!
//! [uplink](https://crates.io/crates/uplink) is the safe wrapper crate for this crate.

// Ignore style warnings for for uplink-c bindings
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]

// Include uplink-c bindings (generated by build.rs)
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));