-
-
Notifications
You must be signed in to change notification settings - Fork 853
/
Cargo.toml
29 lines (24 loc) · 933 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "pyxel-wrapper"
version = "1.8.1"
authors = ["Takashi Kitao <[email protected]>"]
edition = "2021"
description = "Python wrapper for Pyxel, a retro game engine for Python"
repository = "https://github.com/kitao/pyxel"
license = "MIT"
readme = "../../docs/README-abspath.md"
categories = ["game-engines", "graphics", "multimedia"]
keywords = ["game", "gamedev", "python"]
[lib]
name = "pyxel_wrapper"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.16", features = ["abi3-py37", "extension-module"] }
pyxel-engine = { path = "../pyxel-engine", version = "1.8.1" }
[target.'cfg(not(target_os = "emscripten"))'.dependencies]
sysinfo = "0.23"
[patch.crates-io]
cmake = { git = "https://github.com/messense/cmake-rs.git", branch = "cross-compile" }
sdl2 = { git = "https://github.com/messense/rust-sdl2.git", branch = "fix-windows-static" }
[package.metadata.maturin]
name = "pyxel.pyxel_wrapper"