2016-02-16 10:36:15 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
RUSTFMT="rustfmt --write-mode overwrite"
|
|
|
|
|
|
|
|
$RUSTFMT ./ethash/src/lib.rs
|
2016-03-23 18:20:06 +01:00
|
|
|
$RUSTFMT ./ethcore/src/lib.rs
|
2016-02-16 10:36:15 +01:00
|
|
|
$RUSTFMT ./evmjit/src/lib.rs
|
2016-03-23 18:20:06 +01:00
|
|
|
$RUSTFMT ./json/src/lib.rs
|
|
|
|
$RUSTFMT ./miner/src/lib.rs
|
2016-02-16 10:36:15 +01:00
|
|
|
$RUSTFMT ./parity/main.rs
|
2016-03-23 18:20:06 +01:00
|
|
|
$RUSTFMT ./rpc/src/lib.rs
|
2016-04-07 10:49:00 +02:00
|
|
|
$RUSTFMT ./webapp/src/lib.rs
|
2016-03-23 18:20:06 +01:00
|
|
|
$RUSTFMT ./sync/src/lib.rs
|
|
|
|
$RUSTFMT ./util/src/lib.rs
|
2016-02-16 10:36:15 +01:00
|
|
|
|