Update development instructions

This commit is contained in:
sharkdp 2017-09-09 18:56:03 +02:00
parent d67b1bba61
commit 4884c23283
2 changed files with 16 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "fd" name = "fd"
version = "2.0.0" version = "3.0.0"
authors = ["David Peter <mail@david-peter.de>"] authors = ["David Peter <mail@david-peter.de>"]
[dependencies] [dependencies]

View file

@ -116,5 +116,19 @@ makepkg -si
## Development ## Development
```bash ```bash
cargo build --release git clone https://github.com/sharkdp/fd
# Build
cd fd
cargo build
# Run unit tests
cargo test
# Run integration tests
cd tests
bash test.sh
# Install
cargo install
``` ```