mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-14 10:34:06 +02:00
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Anthony Stirling <[email protected]>
64 lines
2.0 KiB
TOML
64 lines
2.0 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.5.3", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4"
|
|
tauri = { version = "2.10.1", features = [ "devtools"] }
|
|
tauri-plugin-log = "2.8.0"
|
|
tauri-plugin-shell = "2.3.4"
|
|
tauri-plugin-fs = "2.4.5"
|
|
tauri-plugin-dialog = "2.4.2"
|
|
tauri-plugin-http = { version = "2.5.6", features = ["dangerous-settings"] }
|
|
tauri-plugin-single-instance = { version = "2.3.7", features = ["deep-link"] }
|
|
tauri-plugin-store = "2.4.2"
|
|
tauri-plugin-opener = "2.5.3"
|
|
tauri-plugin-deep-link = "2.4.6"
|
|
tauri-plugin-notification = "2.3.3"
|
|
tauri-plugin-window-state = "2.2.1"
|
|
keyring = { version = "3.6.1", features = ["apple-native", "windows-native"] }
|
|
tokio = { version = "1.0", features = ["time", "sync"] }
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots"] }
|
|
tiny_http = "0.12"
|
|
url = "2.5"
|
|
urlencoding = "2.1"
|
|
sha2 = "0.11"
|
|
base64 = "0.22"
|
|
rand = "0.9"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation = "0.10"
|
|
core-services = "1.0"
|
|
objc2 = "0.6.4"
|
|
objc2-app-kit = { version = "0.3.2", features = ["NSPrintInfo", "NSPrintOperation"] }
|
|
objc2-foundation = { version = "0.3.2", features = ["NSObject", "NSString", "NSURL"] }
|
|
objc2-pdf-kit = { version = "0.3.2", features = ["PDFDocument", "objc2-app-kit"] }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows = { version = "0.61", features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Com",
|
|
"Win32_UI_Shell",
|
|
"Win32_System_ApplicationInstallationAndServicing",
|
|
] }
|