doukutsu-rs/drsandroid/Cargo.toml

21 lines
408 B
TOML
Raw Permalink Normal View History

[package]
name = "drsandroid"
2022-11-21 14:15:51 +00:00
description = "doukutsu-rs targeted for Android"
version = "0.1.0"
2022-11-21 14:15:51 +00:00
edition = "2021"
2023-01-25 14:25:42 +00:00
[profile.release]
opt-level = 3
2023-01-25 17:23:15 +00:00
lto = "off"
codegen-units = 256
2023-01-25 14:25:42 +00:00
incremental = true
[lib]
crate-type = ["cdylib"]
[dependencies]
2022-11-21 14:15:51 +00:00
ndk = "0.7"
ndk-glue = "0.7"
ndk-sys = "0.4"
doukutsu-rs = { path = "../", default-features = false, features = ["default-base", "backend-glutin", "webbrowser"] }