-
-
Notifications
You must be signed in to change notification settings - Fork 866
/
Copy pathCargo.toml
executable file
·40 lines (36 loc) · 953 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
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "pyxel-engine"
version = "2.3.8"
authors = ["Takashi Kitao <takashi.kitao@gmail.com>"]
edition = "2021"
description = "Core engine for Pyxel, a retro game engine for Python"
repository = "https://github.com/kitao/pyxel"
license = "MIT"
keywords = ["game", "gamedev", "python"]
categories = ["game-engines", "graphics", "multimedia"]
[lib]
name = "pyxel"
[[test]]
name = "tests"
path = "tests/test_pyxel.rs"
harness = false
[dependencies]
cfg-if = "1.0"
directories = "6.0"
gif = "0.13"
glow = "0.16"
hound = "3.5"
image = "0.24"
indexmap = "2.7"
noise = "0.9"
parking_lot = "0.12"
pyxel-platform = { path = "../pyxel-platform", version = "2.3.8" }
rand = "0.9"
rand_xoshiro = "0.7"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde-xml-rs = "0.6"
toml = "0.8"
zip = { version = "2.2", default-features = false, features = ["deflate"] }
[target.'cfg(not(target_os = "emscripten"))'.dependencies]
chrono = "0.4"