You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Upgrade to `tokio` 1.47
* Bumped MSRV to v1.82.0 needed by latest packages
* Added more clippy/rust lints including `pedantic` and fixed found items
* Use only the main api server, the others are deprecated
* Updated GHA
* Added dotenvy as a dev dependency to load `.env` files
Signed-off-by: BlackDex <black.dex@gmail.com>
Copy file name to clipboardExpand all lines: README.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,21 +17,21 @@
17
17
-[X] Synchronous Yubikey client API library, [validation protocol version 2.0](https://developers.yubico.com/OTP/Specifications/OTP_validation_protocol.html).
18
18
-[X] Asynchronous Yubikey client API library relying on [Tokio](https://github.com/tokio-rs/tokio)
19
19
20
-
**Note:** The USB-related features have been moved to a sepatated repository, [yubico-manager](https://github.com/wisespace-io/yubico-manager)
20
+
**Note:** The USB-related features have been moved to a separated repository, [yubico-manager](https://github.com/wisespace-io/yubico-manager)
21
21
22
22
## Usage
23
23
24
24
Add this to your Cargo.toml
25
25
26
26
```toml
27
27
[dependencies]
28
-
yubico_ng = "0.13"
28
+
yubico_ng = "0.14"
29
29
```
30
30
31
31
Or, since this crate is still backwards compatible with the yubico crate.
32
32
```toml
33
33
[dependencies]
34
-
yubico = { version = "0.13", package = "yubico_ng" }
34
+
yubico = { version = "0.14", package = "yubico_ng" }
35
35
```
36
36
37
37
The following are a list of Cargo features that can be enabled or disabled:
@@ -179,6 +179,14 @@ The OTP is valid.
179
179
180
180
## Changelog
181
181
182
+
- 0.14.0 (2025-08-13):
183
+
* Upgrade to `tokio` 1.47
184
+
* Bumped MSRV to v1.82.0 needed by latest packages
185
+
* Added more clippy/rust lints including `pedantic` and fixed found items
186
+
* Use only the main api server, the others are deprecated
187
+
* Updated GHA
188
+
* Added dotenvy as a dev dependency to load `.env` files
0 commit comments