Skip to content

Commit

Permalink
Merge pull request #25 from danielpclark/nightly_fix
Browse files Browse the repository at this point in the history
Fix new cargo syntax & dep versions
  • Loading branch information
danielpclark authored Dec 9, 2017
2 parents 20327a7 + f3a1b76 commit ac3cefe
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ before_install:
- make && sudo make install
- cd ../.. && rm -rf aescrypt-3.13
- export PATH=$PATH:$PWD/bin/
script: cargo test && cargo build && shpec test/*.test
script: cargo +nightly test && cargo +nightly build && shpec test/*.test
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ categories = ["cryptography"]

[dependencies]
array_tool = "^1.0"
tempdir = "0.3"
clap = "^2.26"
tempdir = "~0.3"
clap = "~2.26"
digits = "~1.1.0"
num_cpus = "^1.0"
rayon = "0.8.2"
rayon = "~0.8.2"
num_cpus = "~1.7"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Then you can get and compile abrute.
```bash
git clone https://github.com/danielpclark/abrute.git
cd abrute
cargo build --release
cargo +nightly build --release
sudo cp target/release/abrute /usr/bin/
```

Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ fi
if [ -d src ] && [ -d .git ];
then
# The source files are already there. We can build and install Abrute.
cargo build --release
cargo +nightly build --release
sudo cp target/release/abrute /usr/bin
else
# Downloading the source files
Expand All @@ -49,7 +49,7 @@ else
cd abrute-master

# Building and installing
bash -lc "cargo build --release"
bash -lc "cargo +nightly build --release"
sudo cp target/release/abrute /usr/bin

# Cleaning
Expand Down

0 comments on commit ac3cefe

Please sign in to comment.