Skip to content

Commit

Permalink
Update getting_started.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb authored and davidhewitt committed Oct 30, 2022
1 parent 7647b70 commit b6f17aa
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions guide/src/getting_started.md
Expand Up @@ -95,6 +95,13 @@ Make sure that the rust you want to be able to access from Python is compiled in


```toml
[package]
# Name of the package. If you already have a package defined in `Cargo.toml`, you can remove
# this section.
name = "pyo3_start"
version = "0.1.0"
edition = "2021"

[lib]
# The name of the native library. This is the name which will be used in Python to import the
# library (i.e. `import string_sum`). If you change this, you must also change the name of the
Expand Down

0 comments on commit b6f17aa

Please sign in to comment.