Skip to content

Commit 660a701

Browse files
authored
Ensure OpenBSD has use std::io (#140)
* Ensure OpenBSD has `use std::io` Fix #139 and https://bugzilla.mozilla.org/show_bug.cgi?id=1666701 * Version bump 0.3.1
1 parent 5b27c97 commit 660a701

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "authenticator"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["J.C. Jones <jc@mozilla.com>", "Tim Taubert <ttaubert@mozilla.com>", "Kyle Machulis <kyle@nonpolynomial.com>"]
55
keywords = ["ctap2", "u2f", "fido", "webauthn"]
66
categories = ["cryptography", "hardware-support", "os"]

src/openbsd/device.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
extern crate libc;
66

77
use std::ffi::OsString;
8+
use std::io;
89
use std::io::{Read, Result, Write};
910
use std::mem;
1011

0 commit comments

Comments
 (0)