- Notifications
You must be signed in to change notification settings - Fork4
AlvaroParker/libfprint-rs
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This crate provides a wrapper around the nativelibfprint
library.
This package requireslibfprint-2
to be installed in your system alongsidelibclang
andpkg-config
Addlibfprint-rs
as a dependency inCargo.toml
[dependencies]libfprint-rs ="0.2.3"
Or usingcargo
cargo add libfprint-rs
Import thelibfprint_rs
crate. The starting point for nearly alllibfprint-rs
functionality is to create a context object. With a context object, you can list devices, open them and execute their functionalities.
use libfprint_rs::FpContext;fnmain(){let ctx =FpContext::new();let devices = ctx.devices();let dev = devices.get(0).unwrap(); dev.open_sync(None).unwrap();}
Distributed under theMIT License.
Currently libfprint-rs is WIP.
About
Libfprint library for Rust
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.