miniquad 0.2.42

Cross-platform window context and rendering library.
Documentation
[package]
name = "miniquad"
version = "0.2.42"
authors = ["not-fl3 <not.fl3@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
homepage = "https://github.com/not-fl3/miniquad"
repository = "https://github.com/not-fl3/miniquad"
description = """
Cross-platform window context and rendering library.
"""
readme="README.md"

[features]
default = []

# Optional log-rs like macros implementation
# disabled by default
log-impl = []

[target.'cfg(windows)'.dependencies]
sapp-windows = { path ="./native/sapp-windows", version = "=0.2.7" }

[target.'cfg(target_os = "linux")'.dependencies]
sapp-linux = { path ="./native/sapp-linux", version = "=0.1.6" }

[target.'cfg(target_os = "macos")'.dependencies]
sapp-darwin = { path = "./native/sapp-darwin", version = "=0.1.2" }

[target.'cfg(target_os = "android")'.dependencies]
sapp-android = { path = "./native/sapp-android", version = "0.1.0" }

[target.wasm32-unknown-unknown.dependencies]
sapp-wasm = { path ="./native/sapp-wasm", version = "=0.1.13" }

[target.'cfg(not(any(target_os="linux", target_os="macos", target_os="anroid", target_arch="wasm32", windows)))'.dependencies]
sapp-dummy = { path ="./native/sapp-dummy", version = "=0.1.3" }

[dev-dependencies]
glam = {version = "0.8", features = ["scalar-math"] }