[package]
edition = "2021"
rust-version = "1.77"
name = "tauri-plugin-auth-session"
version = "0.2.2"
authors = ["Yanqiang Lu"]
build = "build.rs"
links = "tauri-plugin-auth-session"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tauri v2 plugin for in-app OAuth authentication on Apple and Android platforms"
readme = "README.md"
keywords = [
"tauri",
"tauri-plugin",
"authentication",
"oauth",
"custom-tabs",
]
categories = [
"authentication",
"gui",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yanqianglu/tauri-plugin-auth-session"
[lib]
name = "tauri_plugin_auth_session"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tauri]
version = "2"
features = []
[build-dependencies.tauri-plugin]
version = "2"
features = ["build"]
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.block2]
version = "0.6"
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.dispatch2]
version = "0.3"
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.objc2]
version = "0.6"
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.objc2-authentication-services]
version = "0.3"
features = [
"ASWebAuthenticationSession",
"block2",
]
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.objc2-foundation]
version = "0.3"
features = [
"NSSet",
"NSArray",
"NSString",
"NSURL",
"NSError",
]
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.tokio]
version = "1"
features = ["sync"]
[target.'cfg(target_os = "ios")'.dependencies.objc2-ui-kit]
version = "0.3"
features = [
"UIApplication",
"UIScene",
"UIWindowScene",
"UIView",
"UIResponder",
"UIWindow",
]
[target.'cfg(target_os = "macos")'.dependencies.objc2-app-kit]
version = "0.3"
features = [
"NSApplication",
"NSWindow",
"NSResponder",
"NSRunningApplication",
]