ruffle-android/native/Cargo.toml

51 lines
1.4 KiB
TOML
Raw Normal View History

2022-03-26 03:06:30 +00:00
[package]
# Underscore because the cargo-ndk gradle plugin doesn't transform a hyphen to it.
name = "ruffle_android"
2022-03-26 03:06:30 +00:00
version = "0.1.0"
authors = ["TÖRÖK Attila <torokati44@gmail.com>"]
edition = "2018"
resolver = "2"
[lib]
2023-08-03 21:46:27 +00:00
crate-type = ["cdylib"]
2022-03-26 03:06:30 +00:00
[profile.release]
strip = "symbols"
2022-03-26 03:06:30 +00:00
[dependencies]
2023-08-03 21:46:27 +00:00
2023-08-03 12:30:48 +00:00
android-activity = { version = "0.4.3", features = ["game-activity"] }
2023-08-05 00:48:11 +00:00
android_logger = "0.13.3"
2022-03-26 03:06:30 +00:00
jni = "0.21.1"
2023-10-15 22:51:47 +00:00
ndk = { version = "0.8.0", features = ["audio"] }
ndk-context = "0.1.1"
2022-03-26 03:06:30 +00:00
2023-10-15 22:51:47 +00:00
winit = { version = "0.28.7", features = ["android-game-activity"] }
# Have to follow Ruffle with this.
wgpu = { git = "https://github.com/gfx-rs/wgpu", branch = "v0.17" }
2023-08-03 21:46:27 +00:00
ruffle_core = { git = "https://github.com/ruffle-rs/ruffle.git", branch = "master", features = [
"audio",
"symphonia",
"mp3",
"nellymoser",
"lzma",
] }
ruffle_render_wgpu = { git = "https://github.com/ruffle-rs/ruffle.git", branch = "master" }
ruffle_video = { git = "https://github.com/ruffle-rs/ruffle.git", branch = "master" }
ruffle_video_software = { git = "https://github.com/ruffle-rs/ruffle.git", branch = "master" }
log = "0.4.20"
2023-08-04 20:24:42 +00:00
log-panics = { version = "2.1.0", features = ["with-backtrace"]}
2023-08-03 21:46:27 +00:00
url = "2.4.1"
2023-08-03 21:46:27 +00:00
generational-arena = "0.2.9"
async-channel = "1.9.0"
2023-10-15 22:51:47 +00:00
# Have to follow Ruffle with this.
[patch.'https://github.com/gfx-rs/naga']
naga = "0.13.0"
[patch.crates-io]
wgpu = { git = "https://github.com/gfx-rs/wgpu", branch = "v0.17" }