-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (35 loc) · 1.25 KB
/
Copy pathCargo.toml
File metadata and controls
43 lines (35 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "papercache"
version = "0.5.9"
description = "A PaperCache Tauri App"
authors = ["Aditya Sharma"]
edition = "2021"
rust-version = "1.77"
[build-dependencies]
tauri-build = { version = "2.0.0", features = [] }
[dependencies]
tauri = { version = "2.0.0", features = ["tray-icon", "image-png", "image-ico", "macos-private-api"] }
tauri-plugin-opener = "2"
tauri-plugin-autostart = "2.0.0"
tauri-plugin-window-state = "2.0.0"
tauri-plugin-updater = "2.0.0"
tauri-plugin-global-shortcut = "2.0.0"
tauri-plugin-dialog = "2.0.0"
reqwest = { version = "0.11", features = ["json", "stream"] }
tokio = { version = "1", features = ["full"] }
keyring = { version = "3", features = ["apple-native", "windows-native", "linux-native"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
dirs = "5.0"
aes-gcm = "0.10"
rand = "0.8"
base64 = "0.22"
tauri-plugin-notification = "2.0.0-rc.5"
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.25"
objc = "0.2"
# The objc v0.2 crate macros use cfg(cargo-clippy) which is no longer recognized,
# producing unexpected_cfgs warnings from external macro expansions that cannot
# be suppressed per-function or per-module (the span originates in objc crate code).
[lints.rust]
unexpected_cfgs = "allow"