-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (44 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
46 lines (44 loc) · 1.35 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
[workspace]
members = [
"crates/taskers-app",
"crates/taskers-launcher",
"crates/taskers-core",
"crates/taskers-cli",
"crates/taskers-control",
"crates/taskers-domain",
"crates/taskers-ghostty",
"crates/taskers-macos-ffi",
"crates/taskers-paths",
"crates/taskers-runtime",
]
resolver = "2"
[workspace.package]
edition = "2024"
homepage = "https://github.com/OneNoted/taskers"
license = "MIT OR Apache-2.0"
repository = "https://github.com/OneNoted/taskers"
version = "0.3.0"
[workspace.dependencies]
adw = { package = "libadwaita", version = "0.9.1" }
anyhow = "1"
base64 = "0.22"
clap = { version = "4", features = ["derive"] }
gtk = { package = "gtk4", version = "0.11.0" }
indexmap = { version = "2", features = ["serde"] }
libc = "0.2"
portable-pty = "0.9.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
svgtypes = "0.15"
tar = "0.4"
tempfile = "3"
toml = "0.8"
thiserror = "2"
time = { version = "0.3", features = ["formatting", "macros", "parsing", "serde", "serde-human-readable"] }
tokio = { version = "1.50.0", features = ["io-util", "macros", "net", "rt-multi-thread", "sync"] }
ureq = "2.12"
uuid = { version = "1.22.0", features = ["serde", "v7"] }
xz2 = "0.1"
taskers-core = { version = "0.3.0", path = "crates/taskers-core" }
taskers-paths = { version = "0.3.0", path = "crates/taskers-paths" }