forked from devlive-community/codeforge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
41 lines (38 loc) · 1.11 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
[package]
name = "CodeForge"
version = "26.0.0"
description = "CodeForge 是一款轻量级、高性能的桌面代码执行器,专为开发者、学生和编程爱好者设计。"
authors = ["devlive-community"]
edition = "2024"
[lib]
name = "codeforge_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
chrono = { version = "0.4.41", features = ["serde"] }
[dependencies]
tauri = { version = "2.9", features = ["devtools", "protocol-asset"] }
tauri-plugin-opener = "2.5"
tauri-plugin-shell = "2.0"
tauri-plugin-dialog = "2.4"
tauri-plugin-fs = "2.4.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = "1.47.1"
uuid = { version = "1.17.0", features = ["v4"] }
tempfile = "3.0"
chrono = { version = "0.4", features = ["serde"] }
log = "0.4"
fern = "0.7.1"
dirs = "6.0.0"
regex = "1.11.1"
reqwest = { version = "0.11", features = ["json", "stream"] }
futures-util = "0.3"
rfd = "0.15"
fix-path-env = { git = "https://github.com/tauri-apps/fix-path-env-rs" }
async-trait = "0.1"
zip = "2.2.2"
flate2 = "1.0"
tar = "0.4"
xz2 = "0.1"
zstd = "0.13"