Skip to content

Commit

Permalink
Merge pull request #2 from lbeder/update-crates
Browse files Browse the repository at this point in the history
Update crates
  • Loading branch information
lbeder authored Apr 28, 2019
2 parents 4c759fd + 4c60038 commit eb9d1a5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
14 changes: 12 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
language: rust
rust:
- stable
- nightly
- nightly-2019-02-08
cache: cargo
before_install:
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
- sudo apt-get update -qq
- sudo apt-get install qt5-default qttools5-dev-tools
before_script:
- rustup component add clippy
- |
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
rustup toolchain add nightly-2019-02-08
rustup component add --toolchain nightly-2019-02-08 clippy
else
rustup component add clippy
fi
script:
- cargo clippy --all-targets --all-features -- -D warnings
- cargo test --release
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "scrypt-kdf"
version = "0.3.3"
version = "0.3.4"
authors = ["Leonid Beder <[email protected]>"]
edition = "2018"

[dependencies]
getopts = "0.2"
rpassword = "2.1.0"
rpassword = "3.0.2"
pbr = "1.0.1"
rust-crypto = "0.2.36"
hex = "0.3.1"
hex = "0.3.2"
humantime = "1.2.0"
crossterm = "0.5.4"
crossterm = "0.9.3"
6 changes: 1 addition & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ extern crate pbr;

mod scrypt_kdf;

use crossterm::{
input,
style::{style, Color},
terminal::terminal,
};
use crossterm::{input, style, terminal, Color};
use getopts::Options;
use humantime::format_duration;
use pbr::ProgressBar;
Expand Down

0 comments on commit eb9d1a5

Please sign in to comment.