ndk-glue 0.5.0

Startup code for android binaries
Documentation
[package]
name = "ndk-glue"
version = "0.5.0"
authors = ["The Rust Windowing contributors"]
edition = "2018"
description = "Startup code for android binaries"
license = "MIT OR Apache-2.0"
keywords = ["android", "ndk"]
readme = "README.md"
documentation = "https://docs.rs/ndk-glue"
homepage = "https://github.com/rust-windowing/android-ndk-rs"
repository = "https://github.com/rust-windowing/android-ndk-rs"

[dependencies]
ndk = { path = "../ndk", version = "0.5.0" }
ndk-sys = { path = "../ndk-sys", version = "0.2.2" }
ndk-macro = { path = "../ndk-macro", version = "0.3.0" }
lazy_static = "1.4.0"
libc = "0.2.84"
log = "0.4.14"
android_logger = { version = "0.10.1", optional = true }

[features]
default = []
test = ["ndk/test", "ndk-sys/test"]
logger = ["android_logger", "ndk-macro/logger"]

[package.metadata.docs.rs]
targets = [
    "aarch64-linux-android",
    "armv7-linux-androideabi",
    "i686-linux-android",
    "x86_64-linux-android",
]