-
Notifications
You must be signed in to change notification settings - Fork 39
/
Cargo.toml
54 lines (41 loc) · 1.33 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
[package]
# Underscore because the cargo-ndk gradle plugin doesn't transform a hyphen to it.
name = "ruffle_android"
version = "0.1.0"
authors = ["TÖRÖK Attila <[email protected]>"]
edition = "2018"
resolver = "2"
license = "MIT OR Apache-2.0"
[lib]
crate-type = ["cdylib"]
[profile.release]
strip = "symbols"
[dependencies]
android-activity = { version = "0.6.0", features = ["game-activity"] }
android_logger = "0.14.1"
jni = "0.21.1"
ndk = { version = "0.9.0", features = ["audio"] }
ndk-context = "0.1.1"
# Have to follow Ruffle with this.
wgpu = "23.0.0"
ruffle_core = { git = "https://github.com/ruffle-rs/ruffle.git", branch = "master", features = [
"audio",
"symphonia",
"mp3",
"nellymoser",
"lzma",
"default_compatibility_rules",
"default_font",
] }
ruffle_render_wgpu = { git = "https://github.com/ruffle-rs/ruffle.git", branch = "master" }
ruffle_video_software = { git = "https://github.com/ruffle-rs/ruffle.git", branch = "master" }
ruffle_frontend_utils = { git = "https://github.com/ruffle-rs/ruffle.git", branch = "master" }
log = "0.4.22"
# Redirect tracing to log
tracing = {version = "0.1.40", features = ["log", "log-always"]}
backtrace = "0.3.74"
url = "2.5.2"
webbrowser = "1.0.2"
tokio = { version = "1.40.0", features = ["rt-multi-thread", "macros"]}
[features]
jpegxr = ["ruffle_core/jpegxr"]