[package]
edition = "2021"
rust-version = "1.77.2"
name = "tauri-plugin-notifications"
version = "0.4.2"
authors = ["You"]
build = "build.rs"
links = "tauri-plugin-notifications"
exclude = [
"/examples",
"/dist-js",
"/guest-js",
"/node_modules",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Tauri v2 plugin for sending notifications on desktop and mobile platforms with support for system notifications and push delivery via FCM and APNs."
readme = "README.md"
license = "MIT"
repository = "https://github.com/Choochmeque/tauri-plugin-notifications"
[features]
default = ["notify-rust"]
notify-rust = ["dep:notify-rust"]
push-notifications = []
[lib]
name = "tauri_plugin_notifications"
path = "src/lib.rs"
[dependencies.log]
version = "0.4"
[dependencies.rand]
version = "0.9"
[dependencies.serde]
version = "1.0"
[dependencies.serde_json]
version = "1"
[dependencies.serde_repr]
version = "0.1"
[dependencies.tauri]
version = "2.8.2"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = [
"serde",
"parsing",
"formatting",
]
[dependencies.url]
version = "2"
features = ["serde"]
[dev-dependencies.color-backtrace]
version = "0.7"
[dev-dependencies.ctor]
version = "0.6"
[dev-dependencies.maplit]
version = "1"
[build-dependencies.tauri-plugin]
version = "2.4.0"
features = ["build"]
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.notify-rust]
version = "4.11"
optional = true
[target.'cfg(target_os = "ios")'.dependencies.tauri]
version = "2.8.2"
features = ["wry"]
[target.'cfg(target_os = "macos")'.dependencies.swift-bridge]
version = "0.1"
features = ["async"]
[target.'cfg(target_os = "macos")'.build-dependencies.swift-bridge-build]
version = "0.1"