forked from Gigoteur/UnicornConsole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
70 lines (60 loc) · 1.39 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "px8"
version = "0.0.5"
authors = ["hallucino <[email protected]>"]
description = "Open source fantasy console in Rust"
documentation = "https://github.com/Gigoteur/PX8/blob/master/README.md"
homepage = "https://github.com/Gigoteur/PX8"
repository = "https://github.com/Gigoteur/PX8"
readme = "README.md"
keywords = ["rust", "console", "python", "lua", "8bits"]
license = "MIT"
build = "build.rs"
exclude = [ ".idea/*", ".travis.yml" ]
[lib]
name = "px8"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[target.'cfg(target_os="android")'.dependencies]
jni = { version = "0.4", default-features = false }
[features]
default = []
blit_perf = []
[dependencies]
time = "0.1.35"
regex = "0.2.1"
png = "0.9.0"
byteorder = "1.0.0"
rand = "0.3.15"
libc = "0.2.18"
log = "0.3.6"
fern = "0.3.5"
rusttype = "0.2.1"
getopts = "0.2.14"
nalgebra = "0.11.1"
image = "0.14.0"
gif = "0.9.0"
chrono = "0.2.25"
lazy_static = "0.1.*"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
noise = "0.4.0"
num = "0.1.37"
num-traits = "0.1"
glob = "0.2.11"
cpython = {version = "0.1.0", optional = true}
[dependencies.px8_plugin_lua]
optional = true
version="0.0.11"
path="src/plugins/lua"
[dependencies.px8_plugin_javascript]
optional = true
version="0.0.1"
path="src/plugins/javascript"
[dependencies.sdl2]
version = "0.27.2"
default-features = false
[dependencies.chiptune]
version="0.0.1"
path="./src/chiptune"