From a66267d0f9126abcecf678a3d7c9b9dd194e7b32 Mon Sep 17 00:00:00 2001 From: Ben Stern Date: Fri, 23 Feb 2018 04:11:30 -0500 Subject: [PATCH] Version 0.8.0 --- Cargo.toml | 4 ++-- src/backingstore.rs | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fff9288..4ab03dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "websession" -version = "0.7.1" +version = "0.8.0" authors = ["Jeff Olhoeft ", "Ben Stern "] description = "Web Session Support for Rust" license = "MIT/Apache-2.0" @@ -10,7 +10,7 @@ exclude = ["data/passwd.old"] [dependencies] hyper = { version = "0.10", optional = true } pwhash = "^0.1" -uuid = { version = "0.5", features = [ "v4" ] } +uuid = { version = "0.6", features = [ "v4" ] } libc = "0.2" time = "0.1" rust-crypto = "^0.2" diff --git a/src/backingstore.rs b/src/backingstore.rs index 73feb3d..f53167d 100644 --- a/src/backingstore.rs +++ b/src/backingstore.rs @@ -275,8 +275,7 @@ impl FileBackingStore { } else if change_pass { if user_recorded { // Don't write them more than once to the file. - // TODO: add logging - // warn!(format!("{} already found in {}; removing extra line", username, basename)); + warn!("{} already found in {}; removing extra line", username, basename); } else { f.write_all(fixedname.as_bytes())?; f.write_all(b":")?;