Mercurial > touhou
view python/Cargo.toml @ 784:1f152ca95658
Replace pytouhou.utils.random.Random with a Rust version
libtouhou.Prng now supports having its seed generated randomly using the
getrandom crate, and is now exposed to Python.
| author | Link Mauve <linkmauve@linkmauve.fr> |
|---|---|
| date | Sun, 23 Nov 2025 12:48:03 +0100 |
| parents | ec1e06402a97 |
| children | 7e940ebeb5fd |
line wrap: on
line source
[package] name = "touhou-python" version = "0.1.0" edition = "2024" authors = [ "Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] crate-type = ["cdylib"] name = "touhou" [dependencies] touhou-formats = "*" touhou-utils = { version = "*", path = "../utils" } pyo3 = "0.27" image = { version = "0.25", default-features = false, features = ["png"], optional = true } glob = "0.3.3" kira = "0.11.0" [features] default = [] glide = ["image"]
