Rust bindings for the libnfc library.
For raw FFI bindings for libnfc
, see nfc-sys.
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.3"
extern crate nfc;
use nfc::version;
fn main() {
println!("libnfc version: {}", version());
}
-
-
-
-
✓ nfc_strerror -> strerror
✓ nfcdevicegetlasterror -> device_get_last_error
-
-
✓ nfc_version -> version
✓ strnfcbaud_rate -> str_baud_rate
✓ strnfcmodulation_type -> str_modulation_type
I'm brand new to Rust so any help or constructive information would be really appreciated. Thanks in advance!
MIT