mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-12-18 20:04:17 +01:00
# Description of Changes Adds Sign Up with email to desktop app. SSO sign up will come in a future PR.
57 lines
1.5 KiB
TOML
57 lines
1.5 KiB
TOML
[package]
|
|
name = "stirling-pdf"
|
|
version = "0.1.0"
|
|
description = "Stirling-PDF Desktop Application"
|
|
authors = ["Stirling-PDF Contributors"]
|
|
license = ""
|
|
repository = ""
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lints.rust]
|
|
warnings = "deny"
|
|
|
|
[lib]
|
|
name = "app_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.2.0", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4"
|
|
tauri = { version = "2.9.0", features = [ "devtools"] }
|
|
tauri-plugin-log = "2.0.0-rc"
|
|
tauri-plugin-shell = "2.1.0"
|
|
tauri-plugin-fs = "2.4.4"
|
|
tauri-plugin-http = "2.4.4"
|
|
tauri-plugin-single-instance = { version = "2.3.6", features = ["deep-link"] }
|
|
tauri-plugin-store = "2.1.0"
|
|
tauri-plugin-opener = "2.0.0"
|
|
tauri-plugin-deep-link = "2.4.5"
|
|
keyring = { version = "3.6.1", features = ["apple-native", "windows-native"] }
|
|
tokio = { version = "1.0", features = ["time", "sync"] }
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
tiny_http = "0.12"
|
|
url = "2.5"
|
|
urlencoding = "2.1"
|
|
sha2 = "0.10"
|
|
base64 = "0.22"
|
|
rand = "0.8"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation = "0.10"
|
|
core-services = "1.0"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows = { version = "0.58", features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Com",
|
|
"Win32_UI_Shell",
|
|
"Win32_System_ApplicationInstallationAndServicing",
|
|
] }
|