[package]
edition = "2021"
name = "uzor-window-mobile"
version = "1.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mobile backend for uzor (iOS/Android)"
homepage = "https://github.com/zeng3ld/uzor"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/zeng3ld/uzor"
[features]
android = [
"ndk",
"jni",
]
default = []
ios = [
"objc2",
"block2",
]
[lib]
name = "uzor_window_mobile"
path = "src/lib.rs"
[dependencies.uzor]
version = "1.2.2"
features = ["serde"]
[target.'cfg(target_os = "android")'.dependencies.jni]
version = "0.21"
optional = true
[target.'cfg(target_os = "android")'.dependencies.ndk]
version = "0.9"
optional = true
[target.'cfg(target_os = "ios")'.dependencies.block2]
version = "0.5"
optional = true
[target.'cfg(target_os = "ios")'.dependencies.objc2]
version = "0.5"
optional = true