os-ver 0.2.1

Detect version number of operating system (Windows, macOS, iOS, Linux)
Documentation
[package]
name = "os-ver"
description = "Detect version number of operating system (Windows, macOS, iOS, Linux)"
homepage = "https://github.com/libark/os-ver-rs"
repository = "https://github.com/libark/os-ver-rs"
documentation = "https://docs.rs/os-ver"
version = "0.2.1"
authors = ["Zhou Wei <zhouwei@ehom.net>"]
license = "MIT OR Apache-2.0"
keywords = ["os", "version"]
edition = "2021"

[dependencies]
cfg-if = "1.0"

[target.'cfg(target_os = "windows")'.dependencies]
windows-version = "0.1"

[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
objc2 = "0.5"

[target.'cfg(target_os = "macos")'.dependencies]
objc2-foundation = { version = "0.2", features = ["NSProcessInfo", "NSString"] }

[target.'cfg(target_os = "ios")'.dependencies]
objc2-foundation = { version = "0.2", features = ["NSString"] }

[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2"

[[example]]
name = "os_version"