uplink_sys/lib.rs
1//! This crate provides Rust bindings to [uplink-c](https://github.com/storj/uplink-c/), the C
2//! interface for the storj uplink API library.
3//!
4//! [uplink](https://crates.io/crates/uplink) is the safe wrapper crate for this crate.
5
6// Ignore style warnings for for uplink-c bindings
7#![allow(non_upper_case_globals)]
8#![allow(non_camel_case_types)]
9#![allow(non_snake_case)]
10
11// Include uplink-c bindings (generated by build.rs)
12include!(concat!(env!("OUT_DIR"), "/bindings.rs"));