[package]
edition = "2021"
rust-version = "1.75"
name = "blinc_platform_ios"
version = "0.1.15"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Blinc iOS platform - UIKit integration, Metal rendering, and touch input"
documentation = "https://docs.rs/blinc_platform_ios"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/project-blinc/Blinc"
[features]
default = []
zrtl-plugin = []
[lib]
name = "blinc_platform_ios"
crate-type = [
"lib",
"staticlib",
]
path = "src/lib.rs"
[dependencies.blinc_animation]
version = "0.1.14"
[dependencies.blinc_core]
version = "0.1.14"
[dependencies.blinc_platform]
version = "0.1.14"
[dependencies.libc]
version = "0.2"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
optional = true
[target.'cfg(target_os = "ios")'.dependencies.blinc_gpu]
version = "0.1.14"
features = ["metal"]
default-features = false
[target.'cfg(target_os = "ios")'.dependencies.objc2]
version = "0.6.3"
[target.'cfg(target_os = "ios")'.dependencies.objc2-foundation]
version = "0.3.2"
features = [
"NSBundle",
"NSString",
"NSPathUtilities",
]
[target.'cfg(target_os = "ios")'.dependencies.objc2-metal]
version = "0.3.2"
[target.'cfg(target_os = "ios")'.dependencies.objc2-ui-kit]
version = "0.3.2"
features = [
"UIScreen",
"UIWindow",
"UIView",
"UIApplication",
"UIResponder",
]