1[package] 2name = "guessing-game" 3version = "0.1.0" 4edition = "2021" 5 6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 8[lib] 9name = "guessing_game" 10# "cdylib" is necessary to produce a shared library for Python to import from. 11crate-type = ["cdylib"] 12 13[dependencies] 14rand = "0.8.4" 15 16[dependencies.pyo3] 17version = "0.19.0" 18# "abi3-py38" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.8 19features = ["abi3-py38"] 20 21