Auto merge of #11231 - hi-rustin:rustin-patch-build-doc, r=epage

Add missing edition

### What does this PR try to resolve?

When I read this doc, I found that we are missing the edition key in this manifest. I think we should add it because `cargo new` always does this.
This commit is contained in:
bors 2022-10-13 15:37:33 +00:00
commit 0b61503914

View File

@ -49,6 +49,7 @@ Here we can see that we have a `build.rs` build script and our binary in
[package]
name = "hello-from-generated-code"
version = "0.1.0"
edition = "2021"
```
Lets see whats inside the build script: