[package]
edition = "2021"
rust-version = "1.77.2"
name = "tauri-plugin-system-components"
version = "0.1.0"
authors = ["SoSweetHam <sosweetham@gmail.com>"]
build = "build.rs"
links = "tauri-plugin-system-components"
exclude = [
"/examples",
"/dist-js",
"/guest-js",
"/node_modules",
"/.tauri",
"/ios/.build",
"/ios/.tauri",
"package.json",
"pnpm-lock.yaml",
"tsconfig.json",
"rollup.config.js",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native system UI components for Tauri 2 — native iOS tab bar over the webview, native controls, and glass window backgrounds on macOS/iOS."
readme = "README.md"
keywords = [
"tauri",
"tauri-plugin",
"system-components",
"ios",
"macos",
]
categories = [
"api-bindings",
"gui",
]
license = "MIT"
repository = "https://github.com/sosweetham/tauri-plugin-system-components"
[lib]
name = "tauri_plugin_system_components"
path = "src/lib.rs"
[dependencies.serde]
version = "1.0"
[dependencies.tauri]
version = "2.10"
[dependencies.thiserror]
version = "2"
[build-dependencies.tauri-plugin]
version = "2.5"
features = ["build"]
[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.6"
[target.'cfg(target_os = "macos")'.dependencies.objc2-app-kit]
version = "0.3"
features = [
"NSWindow",
"NSView",
"NSVisualEffectView",
"NSColor",
"NSResponder",
"NSGraphics",
"NSControl",
"NSSegmentedControl",
"NSCell",
"NSSegmentedCell",
"NSImage",
"NSImageView",
"NSSwitch",
"NSButton",
"NSSlider",
"NSProgressIndicator",
]
[target.'cfg(target_os = "macos")'.dependencies.objc2-foundation]
version = "0.3"