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]
name = "fd"
version = "2.0.0"
version = "3.0.0"
authors = ["David Peter <mail@david-peter.de>"]
[dependencies]

View File

@ -116,5 +116,19 @@ makepkg -si
## Development
```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
```