view python/Cargo.toml @ 776:94033091458b

formats: Update to ${concat(…)} to build on current nightly ${concat(…)} replaces the removed concat_idents!() macro, but doesn’t support being used in nested repetitions for now. We can remove the gen_match!() macro once this is supported again.
author Link Mauve <linkmauve@linkmauve.fr>
date Tue, 14 Oct 2025 12:41:29 +0000
parents 28d8b892fd06
children 11249e4b4e03
line wrap: on
line source

[package]
name = "touhou-python"
version = "0.1.0"
edition = "2021"
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 = "*"
pyo3 = "0.26"
image = { version = "0.24", default-features = false, features = ["png"], optional = true }

[features]
default = []
glide = ["image"]