diff --git a/docs/tutorials/create-a-project.mdx b/docs/tutorials/create-a-project.mdx index 7e58a48f8..d9e46edbe 100644 --- a/docs/tutorials/create-a-project.mdx +++ b/docs/tutorials/create-a-project.mdx @@ -110,6 +110,11 @@ See the [logging example] for more information about how to log. The steps below should produce a `Cargo.toml` that looks like so. ```toml title="Cargo.toml" +[package] +name = "project-name" +version = "0.1.0" +edition = "2022" + [lib] crate-type = ["cdylib"]