aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Mark deprecated functions using the deprecated attributeRobin Krahl2019-07-04
| | | | | | nitrokey-sys currently contains two deprecated functions: `NK_status` and `NK_totp_get_time`. This patch adds Rust’s `deprecated` attribute to the functions.
* Update to libnitrokey v3.5Robin Krahl2019-07-04
| | | | | This patch updates libnitrokey from version 3.4.1 to version 3.5 and lists all API changes in the changelog.
* Update to Rust edition 2018Robin Krahl2018-12-16
| | | | | This patch updates the crate to use Rust edition 2018. It also changes the use statement for the ffi module to the new crate:: syntax.
* Update login_auto test caseRobin Krahl2018-12-16
| | | | | | | | | Currently, the login_auto test case calls NK_logout before NK_login_auto due to the behavior described in libnitrokey pull request #115 [0]. This behavior has been fixed in version 3.4.1. Therefore this patch removes the NK_logout call. [0] https://github.com/Nitrokey/libnitrokey/pull/115
* Update to libnitrokey v3.4v3.4.0Robin Krahl2018-12-10
| | | | | | Besides the changes listed in the changelog, this patch also changes the build system to be able to generate the version.cc file containing the library version.
* Build libnitrokey from sourceRobin Krahl2018-05-21
| | | | | | This patch changes the build script to compile and link libnitrokey from the included source. Also, we have to link against hidapi-libusb as a libnitrokey requirement.
* Replace generated with static codeRobin Krahl2018-05-20
| | | | | | | Use bindgen to generate the bindings statically instead of during build. Code generation is not necessary as NK_C_API.h does not contain any system-dependent definitions. Removing bindgen as a build dependency also drastically speeds up compilation.
* Initial commit after move from nitrokey-rsv0.1.0Robin Krahl2018-05-20
Previously, this crate has been part of the nitrokey-rs repository at https://git.ireas.org/nitrokey-rs.