nfc 0.1.5

Rust bindings for the libnfc library
Documentation

nfc

Crates.io

Rust bindings for the libnfc library.

For raw FFI bindings for libnfc, see nfc-sys.

Installation

Install libnfc (e.g. Debian/Ubuntu, brew install libnfc using Homebrew on Mac OSx, or on other systems).

Cargo.toml

[dependencies]
libc = "0.2.0"
nfc = "0.1.5"

Example Usage

// main.rs

extern crate nfc;

use nfc::version;

fn main() {
    println!("libnfc version: {}", version());
}

Implemented/TODO

Library initialization/deinitialization methods (3 out of 3 implemented):

As register_device, init and exit.

NFC Device/Hardware manipulation methods (5 out of 5 implemented):

As open, close, list_devices, idle and abort_command.

NFC Initiator methods (2 out of 12 implemented):

As initiator_init and initiator_init_secure_element.

NFC Target methods (5 out of 5 implemented):

As target_init, target_send_bytes, target_receive_bytes, target_send_bits and target_receive_bits.

Error Reporting methods (4 out of 4 implemented):

As strerror, strerror_r, perror and device_get_last_error.

Special Data Accessors methods (4 out of 4 implemented):

As device_get_name, device_get_connstring, device_get_supported_modulation and device_get_supported_baud_rate.

Properties Accessors methods (2 out of 2 implemented):

As device_set_property_int and device_set_property_bool.

Miscellaneous methods (1 out of 3 implemented):

As version.

To-string Converters methods (2 out of 3 implemented):

As str_baud_rate and str_modulation_type.

Contributing

I'm brand new to Rust so any help or constructive information would be really appreciated. Thanks in advance!

License

MIT