Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
929 B
TOML
Raw Permalink Normal View History

2025-06-05 14:56:16 +01:00
[package]
2025-07-17 10:17:33 +01:00
name = "stirling-pdf"
2025-06-05 14:56:16 +01:00
version = "0.1.0"
2025-07-17 10:17:33 +01:00
description = "Stirling-PDF Desktop Application"
authors = ["Stirling-PDF Contributors"]
2025-06-05 14:56:16 +01:00
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
[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"
2025-07-22 16:53:47 +01:00
tauri = { version = "2.5.0", features = [] }
2025-06-05 14:56:16 +01:00
tauri-plugin-log = "2.0.0-rc"
2025-06-09 10:04:40 +01:00
tauri-plugin-shell = "2.1.0"
2025-07-04 14:33:59 +01:00
tauri-plugin-fs = "2.0.0"
2025-06-09 10:04:40 +01:00
tokio = { version = "1.0", features = ["time"] }
reqwest = { version = "0.11", features = ["json"] }
2025-07-15 18:29:42 +01:00
# macOS-specific dependencies for native file opening
[target.'cfg(target_os = "macos")'.dependencies]
objc = "0.2"
cocoa = "0.24"
once_cell = "1.19"