[package]
edition = "2021"
name = "tauri-plugin-sharekit"
version = "0.3.1"
authors = ["You"]
build = "build.rs"
links = "tauri-plugin-sharekit"
exclude = [
"/examples",
"/dist-js",
"/guest-js",
"/node_modules",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Tauri v2 plugin that enables sharing content with native sharing interfaces on Android, iOS, macOS and Windows."
readme = "README.md"
license = "MIT"
repository = "https://github.com/Choochmeque/tauri-plugin-sharekit"
[lib]
name = "tauri_plugin_sharekit"
path = "src/lib.rs"
[dependencies.log]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_repr]
version = "0.1"
[dependencies.tauri]
version = "2.7.0"
[dependencies.thiserror]
version = "2"
[build-dependencies.tauri-plugin]
version = "2.3.0"
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 = [
"NSSharingService",
"NSView",
"NSResponder",
]
[target.'cfg(target_os = "macos")'.dependencies.objc2-core-foundation]
version = "0.3"
[target.'cfg(target_os = "macos")'.dependencies.objc2-foundation]
version = "0.3"
features = ["NSString"]
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.61"
features = [
"ApplicationModel_DataTransfer",
"Foundation",
"Foundation_Collections",
"Storage",
"Storage_Streams",
"Win32_System_WinRT",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
]
[target.'cfg(target_os = "windows")'.dependencies.windows-collections]
version = "0.2"