plist_plus 0.2.6

A library for reading and writing plists, compatible with libimobiledevice
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// jkcoxson

#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(deref_nullptr)]
#![allow(improper_ctypes)]
#![allow(dead_code)]
#![allow(clippy::upper_case_acronyms)]

// This was mostly done for rust-analyzer, but it's useful to have it here

#[cfg(feature = "pls-generate")]
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

#[cfg(not(feature = "pls-generate"))]
include!("pregenerated.rs");