-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (63 loc) · 2.28 KB
/
Cargo.toml
File metadata and controls
71 lines (63 loc) · 2.28 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "phoenix-code-ide"
version = "5.1.4"
description = "Phoenix Code"
authors = ["arun@core.ai, charly@core.ai"]
license = "GNU AGPL 3.0"
repository = "https://github.com/phcode-dev/phoenix-desktop"
edition = "2021"
rust-version = "1.70"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1.5.1", features = [] }
[dependencies]
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1.0", features = ["full"] }
os_info = "3"
chrono = "0.4"
serde_json = "1.0.116"
once_cell = "1.19.0"
percent-encoding = "2.3.1"
regex = "1.10.4"
clipboard-files = "0.1.1"
trash = "5"
webbrowser = "1.0"
backtrace = "0.3.73"
serde = { version = "1.0.200", features = ["derive"] }
tauri = { version = "1.6.2", features = [ "updater", "cli", "api-all", "devtools", "linux-protocol-headers"] }
winapi = { version = "0.3.9", features = ["fileapi", "wingdi", "winuser", "windef"] }
png = "0.17"
tauri-plugin-fs-extra = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
tauri-plugin-single-instance = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
fix-path-env = { git = "https://github.com/tauri-apps/fix-path-env-rs" }
keyring = "3.0.0"
whoami = "1.5.2"
# AES encryption dependencies
# AES encryption dependencies
aes-gcm = "0.10"
hex = "0.4.3"
[target.'cfg(target_os = "windows")'.dependencies]
native-dialog = "0.7.0"
webview2-com = "0.19"
windows = { version = "0.39", features = ["Win32_Foundation"] }
[target.'cfg(target_os = "linux")'.dependencies]
gtk = "0.15"
webkit2gtk = "0.18" # if tauri build fails, make sure to match this version to what we have in tauri
dialog = "0.3.0"
[target.'cfg(target_os = "macos")'.dependencies]
objc = "0.2.7"
block = "0.1"
cocoa = "0.25"
tauri-plugin-deep-link = "0.1.2"
lazy_static = "1.4"
native-dialog = "0.7.0"
[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = ["custom-protocol"]
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = ["tauri/custom-protocol"]
[profile.release]
debug = "line-tables-only"
split-debuginfo = "unpacked"