-
-
Notifications
You must be signed in to change notification settings - Fork 850
/
Cargo.toml
28 lines (23 loc) · 829 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
[package]
name = "pyxel-extension"
version = "1.9.14"
authors = ["Takashi Kitao <takashi.kitao@gmail.com>"]
edition = "2021"
description = "Python extension module for Pyxel, a retro game engine for Python"
repository = "https://github.com/kitao/pyxel"
license = "MIT"
readme = "README.md"
categories = ["game-engines", "graphics", "multimedia"]
keywords = ["game", "gamedev", "python"]
[lib]
name = "pyxel_extension"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.18", features = ["abi3-py37", "extension-module"] }
pyxel-core = { path = "../pyxel-core", version = "1.9.14" }
[target.'cfg(not(target_os = "emscripten"))'.dependencies]
sysinfo = "0.26"
[patch.crates-io]
sdl2 = { git = "https://github.com/Rust-SDL2/rust-sdl2.git", branch = "master" }
[package.metadata.maturin]
name = "pyxel.pyxel_extension"