Skip to content

Commit

Permalink
Version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
therealbstern committed Feb 23, 2018
1 parent 65c1d0a commit a66267d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "websession"
version = "0.7.1"
version = "0.8.0"
authors = ["Jeff Olhoeft <[email protected]>", "Ben Stern <[email protected]>"]
description = "Web Session Support for Rust"
license = "MIT/Apache-2.0"
Expand All @@ -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"
Expand Down
3 changes: 1 addition & 2 deletions src/backingstore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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":")?;
Expand Down

0 comments on commit a66267d

Please sign in to comment.