Skip to content

Commit

Permalink
bump version to 0.1.0-pre.15
Browse files Browse the repository at this point in the history
  • Loading branch information
ewilken committed Aug 11, 2022
1 parent d01002e commit b13bf31
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hap"
version = "0.1.0-pre.14"
version = "0.1.0-pre.15"
authors = ["Elias Wilken <[email protected]>"]
edition = "2021"
description = "Rust implementation of the Apple HomeKit Accessory Protocol (HAP)"
Expand Down
2 changes: 1 addition & 1 deletion codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hap-codegen"
version = "0.1.0-pre.14"
version = "0.1.0-pre.15"
authors = ["Elias Wilken <[email protected]>"]
edition = "2021"
description = "Rust implementation of the Apple HomeKit Accessory Protocol (HAP)"
Expand Down
2 changes: 1 addition & 1 deletion src/transport/http/handler/pair_setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use log::{debug, info};
use num::BigUint;
use rand::{rngs::OsRng, RngCore};
use sha2::{digest::Digest, Sha512};
use signature::{ Signer, Verifier};
use signature::{Signer, Verifier};
use srp::{
client::{srp_private_key, SrpClient},
groups::G_3072,
Expand Down
2 changes: 1 addition & 1 deletion src/transport/http/handler/pair_verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use futures::{
use hyper::{body::Buf, Body};
use log::{debug, info};
use rand::rngs::OsRng;
use signature::{Signature, Signer, Verifier};
use signature::{Signer, Verifier};
use std::str;
use uuid::Uuid;
use x25519_dalek::{EphemeralSecret, PublicKey};
Expand Down

0 comments on commit b13bf31

Please sign in to comment.