Rust bindings for the libnfc library
Install libnfc
(e.g. Debian/Ubuntu, brew install libnfc
using Homebrew on Mac OSx, or on other systems).
[dependencies]
libc = "0.2.0"
nfc = "0.1.0"
extern crate libc;
extern crate nfc;
use nfc::nfc_version;
use std::ffi::CStr;
use std::str;
fn main() {
unsafe {
let slice = CStr::from_ptr(nfc_version());
println!("libnfc version: {}", slice.to_str().unwrap()); // o: libnfc version: libnfc-1.7.1-79-ge23f8a9
}
}
I'm brand new to Rust so any help or constructive information would be really appreciated. Thanks in advance!
MIT