-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
116 lines (108 loc) · 3.99 KB
/
Cargo.toml
File metadata and controls
116 lines (108 loc) · 3.99 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[package]
name = "rustickers"
version = "0.1.0"
edition = "2024"
default-run = "rustickers"
[features]
default = ["ui"]
ui = [
"dep:sqlx",
"sqlx/migrate",
"dep:gpui",
"dep:gpui_platform",
"dep:gpui-component",
"dep:gpui-wry",
"dep:wry",
"dep:lyon",
"dep:mimalloc",
"dep:rdev",
"dep:winsplit",
"dep:rust-embed",
"dep:notify-rust",
"dep:async-compat",
"dep:futures",
"dep:rfd",
"dep:reqwest",
"dep:webbrowser",
"dep:url",
"dep:urlencoding",
"dep:ignore",
"dep:arboard",
"dep:notify",
"dep:rodio",
"dep:lofty",
"dep:tracing-appender",
"dep:tracing-error",
"dep:tracing-subscriber",
"dep:cron",
"dep:which",
"dep:cocoa",
"dep:objc",
]
cli = [
"dep:clap",
"dep:futures",
"dep:sqlx",
]
[[bin]]
name = "rustickers"
path = "src/rustickers.rs"
required-features = ["ui"]
[[bin]]
name = "rusticker"
path = "src/rusticker.rs"
required-features = ["cli"]
[dependencies]
gpui = { git = "https://github.com/zed-industries/zed", optional = true }
gpui_platform = { git = "https://github.com/zed-industries/zed", optional = true }
gpui-component = { git = "https://github.com/longbridge/gpui-component", rev = "c2423239ed8237426abc4848aa2498eb3a03fe0f", optional = true }
gpui-wry = { git = "https://github.com/longbridge/gpui-component", rev = "c2423239ed8237426abc4848aa2498eb3a03fe0f", optional = true }
wry = { version = "0.53.3", package = "lb-wry", optional = true }
anyhow = "1.0.102"
clap = { version = "4", features = ["derive"], optional = true }
async-trait = "0.1.85"
directories = "6.0.0"
memchr = "2.7.6"
tracing = "0.1.41"
tracing-appender = { version = "0.2.3", optional = true }
tracing-error = { version = "0.2.1", optional = true }
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt", "registry"], optional = true }
sqlx = { version = "0.8.6", features = ["runtime-async-std", "sqlite", "macros"], optional = true }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
chrono = { version = "0.4.43", default-features = false, features = ["clock", "std"] }
cron = { version = "0.15.0", optional = true }
interprocess = "2.2.1"
lyon = { version = "1.0.16", optional = true }
mimalloc = { version = "*", features = ["v3"], optional = true }
rdev = { version = "0.5.3", optional = true }
which = { version = "8.0.0", optional = true }
winsplit = { version = "0.1.0", optional = true }
rust-embed = { version = "8", features = ["interpolate-folder-path"], optional = true }
notify-rust = { version = "4.11.7", optional = true }
async-compat = { version = "0.2.5", optional = true }
futures = { version = "0.3.31", optional = true }
rfd = { version = "0.17.2", optional = true }
reqwest = { version = "0.13.2", optional = true }
webbrowser = { version = "1.1.0", optional = true }
url = { version = "2.5.7", optional = true }
urlencoding = { version = "2.1.3", optional = true }
ignore = { version = "0.4.25", optional = true }
arboard = { version = "3.6.1", optional = true }
notify = { version = "8.2.0", optional = true }
rodio = { version = "0.22.1", features = ["symphonia-all"], optional = true }
lofty = { version = "0.23.2", optional = true }
[target.'cfg(target_os = "windows")'.dependencies]
windows-sys = { version = "0.61.2", features = ["Win32_Foundation", "Win32_System_Diagnostics_Debug", "Win32_System_Kernel", "Win32_System_Console", "Win32_UI_WindowsAndMessaging"] }
windows = { version = "0.62.2", features = ["Win32_Foundation", "Win32_System_Com", "Win32_System_Ole", "Win32_System_Variant", "Win32_UI_Shell", "Win32_UI_WindowsAndMessaging"] }
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = { version = "0.26.0", optional = true }
objc = { version = "0.2.7", optional = true }
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true # Link Time Optimization (removes dead code).
codegen-units = 1 # Maximizes optimization (slower compile times).
panic = "abort" # Removes stack unwinding (harder to debug crashes, but much smaller).
[build-dependencies]
winres = "0.1"