Files
2026-07-06 01:03:32 +03:00

27 lines
635 B
TOML

[package]
name = "drsandroid"
description = "doukutsu-rs targeted for Android"
version = "0.1.0"
edition = "2021"
[profile.dev]
panic = "abort"
[profile.release]
opt-level = 3
lto = "off"
panic = "abort"
codegen-units = 256
incremental = true
[lib]
crate-type = ["staticlib"]
[dependencies]
ndk-context = "0.1.1"
ndk-sys = "0.4"
doukutsu-rs = { path = "../", default-features = false, features = ["default-base", "backend-sdl", "render-opengl", "webbrowser"] }
sdl2 = { git = "https://github.com/doukutsu-rs/rust-sdl2.git", rev = "244ae85833cff4f97ab4b58331741be20e422bd7", features = ["unsafe_textures"] }
jni = "0.20"
libc = "*"