-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (46 loc) · 1.92 KB
/
Cargo.toml
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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
authors = ["The Deskulpt Development Team"]
edition = "2021"
homepage = "https://csci-shu-410-se-project.github.io/Deskulpt/"
license = "MIT"
repository = "https://github.com/CSCI-SHU-410-SE-Project/Deskulpt"
version = "0.0.1"
[workspace.dependencies]
anyhow = "1.0.87"
bincode = "1.3.3"
dunce = "1.0.5"
objc2 = "0.5.2"
once_cell = "1.20.2"
open = "5.3.1"
oxc = "0.43.0"
path-clean = "1.0.1"
rolldown = { git = "https://github.com/rolldown/rolldown.git", tag = "v1.0.0-beta.1" }
rolldown_common = { git = "https://github.com/rolldown/rolldown.git", tag = "v1.0.0-beta.1" }
serde = "1.0.210"
serde_json = "1.0.128"
tauri = "2.2.0"
tauri-build = "2.0.4"
tauri-plugin-clipboard-manager = "2.2.0"
tauri-plugin-global-shortcut = "2.2.0"
tempfile = "3.15.0"
thiserror = "2.0.9"
tokio = "1.43.0"
# Deskulpt crates
deskulpt-core = { version = "0.0.1", path = "crates/deskulpt-core" }
deskulpt-plugin = { version = "0.0.1", path = "crates/deskulpt-plugin" }
deskulpt-plugin-macros = { version = "0.0.1", path = "crates/deskulpt-plugin-macros" }
# TODO: Remove these since they will not be dependencies of other crates when finalized
deskulpt-plugin-fs = { version = "0.0.1", path = "crates/deskulpt-plugin-fs" }
deskulpt-plugin-sys = { version = "0.0.1", path = "crates/deskulpt-plugin-sys" }
sysinfo = "0.33.1"
[profile.dev]
incremental = true
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = "s"
panic = "abort"
strip = true