Skip to content

Commit 958e7cf

Browse files
committed
move to rust 1.22.1
1 parent fc89ec6 commit 958e7cf

File tree

8 files changed

+43
-32
lines changed

8 files changed

+43
-32
lines changed

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,14 @@ The next command line is used to compile Rust program:
8484
One needs to run Mac Os X or Linux with installed to PATH GNU C++ compiler or Clang and Rust. By the author the presented project was tested with the next softwares:
8585

8686
```
87-
> rustc -V
88-
Rustc 1.20.0 (f3d6973f4 2017-08-27)
87+
> rustc --version -v 9:06:07 ☁ edit1 ☂ 𝝙 ✭ 𝝙 khdmitry-pc
88+
rustc 1.22.1 (05e2e1c41 2017-11-22)
89+
binary: rustc
90+
commit-hash: 05e2e1c41414e8fc73d0f267ea8dab1a3eeeaa99
91+
commit-date: 2017-11-22
92+
host: x86_64-unknown-linux-gnu
93+
release: 1.22.1
94+
LLVM version: 4.0
8995
9096
> g++ -v
9197
...

binary_search/generator/Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/measure/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/rust_common/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

huffman_encoding/generator/Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

levenshtein/generator/Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mergesort/generator/Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

run_bench.sh

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ cd common/measure
88
cargo build --release &> /dev/null
99
cd ../..
1010

11+
# build rust commons
12+
cd common/rust_common
13+
cargo build --release &> /dev/null
14+
cd ../..
15+
1116
# clean out file
1217
if [ -f $out ]; then rm -f $out; fi;
1318
touch $out

0 commit comments

Comments
 (0)