1
0
mirror of https://github.com/actix/actix-website synced 2024-11-23 16:31:08 +01:00

remove --bin from cargo new

`cargo new` defaults to `--bin` since cargo 0.26
This commit is contained in:
Ivan Tham 2018-05-26 15:31:13 +08:00 committed by GitHub
parent fd51870371
commit 19746a3e0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ Lets write our first actix web application!
Start by creating a new binary-based Cargo project and changing into the new directory:
```bash
cargo new hello-world --bin
cargo new hello-world
cd hello-world
```