mirror of
https://github.com/rust-mobile/android-activity.git
synced 2026-07-10 08:44:11 +00:00
29 lines
587 B
TOML
29 lines
587 B
TOML
[package]
|
|
name = "native-activity"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
keywords = ["android", "ndk"]
|
|
readme = "../README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
jni-sys = "0.3"
|
|
ndk = { version = "0.6" }
|
|
ndk-sys = { version = "0.3" }
|
|
ndk-context = { version = "0.1" }
|
|
lazy_static = "1.4.0"
|
|
num_enum = "0.5"
|
|
bitflags = "1.3"
|
|
libc = "0.2.84"
|
|
|
|
[build-dependencies]
|
|
cc = { version = "1.0", features = ["parallel"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = [
|
|
"aarch64-linux-android",
|
|
"armv7-linux-androideabi",
|
|
"i686-linux-android",
|
|
"x86_64-linux-android",
|
|
] |