ruffle-android/Cargo.toml

54 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"
license = "MIT OR Apache-2.0"
2022-03-26 03:06:30 +00:00
[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
android-activity = { version = "0.5.2", 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"
ndk = { version = "0.8.0", features = ["audio"] }
ndk-context = "0.1.1"
2022-03-26 03:06:30 +00:00
# Have to follow Ruffle with these.
Bump the rust-minor group with 8 updates Bumps the rust-minor group with 8 updates: | Package | From | To | | --- | --- | --- | | [wgpu](https://github.com/gfx-rs/wgpu) | `0.19.3` | `0.19.4` | | [hyper](https://github.com/hyperium/hyper) | `1.3.0` | `1.3.1` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.80` | `1.0.81` | | [serde](https://github.com/serde-rs/serde) | `1.0.197` | `1.0.198` | | [serde_derive](https://github.com/serde-rs/serde) | `1.0.197` | `1.0.198` | | [serde_json](https://github.com/serde-rs/json) | `1.0.115` | `1.0.116` | | [wgpu-core](https://github.com/gfx-rs/wgpu) | `0.19.3` | `0.19.4` | | [wgpu-hal](https://github.com/gfx-rs/wgpu) | `0.19.3` | `0.19.4` | Updates `wgpu` from 0.19.3 to 0.19.4 - [Release notes](https://github.com/gfx-rs/wgpu/releases) - [Changelog](https://github.com/gfx-rs/wgpu/blob/trunk/CHANGELOG.md) - [Commits](https://github.com/gfx-rs/wgpu/compare/v0.19.3...v0.19.4) Updates `hyper` from 1.3.0 to 1.3.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.3.0...v1.3.1) Updates `proc-macro2` from 1.0.80 to 1.0.81 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.80...1.0.81) Updates `serde` from 1.0.197 to 1.0.198 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.197...v1.0.198) Updates `serde_derive` from 1.0.197 to 1.0.198 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.197...v1.0.198) Updates `serde_json` from 1.0.115 to 1.0.116 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.115...v1.0.116) Updates `wgpu-core` from 0.19.3 to 0.19.4 - [Release notes](https://github.com/gfx-rs/wgpu/releases) - [Changelog](https://github.com/gfx-rs/wgpu/blob/trunk/CHANGELOG.md) - [Commits](https://github.com/gfx-rs/wgpu/compare/v0.19.3...v0.19.4) Updates `wgpu-hal` from 0.19.3 to 0.19.4 - [Release notes](https://github.com/gfx-rs/wgpu/releases) - [Changelog](https://github.com/gfx-rs/wgpu/blob/trunk/CHANGELOG.md) - [Commits](https://github.com/gfx-rs/wgpu/compare/v0.19.3...v0.19.4) --- updated-dependencies: - dependency-name: wgpu dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-minor - dependency-name: hyper dependency-type: indirect update-type: version-update:semver-patch dependency-group: rust-minor - dependency-name: proc-macro2 dependency-type: indirect update-type: version-update:semver-patch dependency-group: rust-minor - dependency-name: serde dependency-type: indirect update-type: version-update:semver-patch dependency-group: rust-minor - dependency-name: serde_derive dependency-type: indirect update-type: version-update:semver-patch dependency-group: rust-minor - dependency-name: serde_json dependency-type: indirect update-type: version-update:semver-patch dependency-group: rust-minor - dependency-name: wgpu-core dependency-type: indirect update-type: version-update:semver-patch dependency-group: rust-minor - dependency-name: wgpu-hal dependency-type: indirect update-type: version-update:semver-patch dependency-group: rust-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-04-18 15:14:57 +00:00
wgpu = "0.19.4"
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",
"default_compatibility_rules",
"default_font",
2023-08-03 21:46:27 +00:00
] }
2023-08-03 21:46:27 +00:00
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" }
2024-04-12 16:13:14 +00:00
ruffle_frontend_utils = { git = "https://github.com/ruffle-rs/ruffle.git", branch = "master" }
2023-08-03 21:46:27 +00:00
log = "0.4.21"
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
2024-03-12 19:49:39 +00:00
# Redirect tracing to log
tracing = {version = "0.1.40", features = ["log", "log-always"]}
url = "2.5.0"
2024-03-18 20:41:14 +00:00
2024-04-12 16:13:14 +00:00
tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros"]}
2024-04-12 14:58:22 +00:00
[features]
jpegxr = ["ruffle_core/jpegxr"]