-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (50 loc) · 1.68 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (50 loc) · 1.68 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
[package]
name = "runx"
version = "0.2.2"
edition = "2024"
license = "GPL-3.0-or-later"
default-run = "runx"
[dependencies]
anyhow = "1.0"
base64 = "0.22"
block2 = "0.6"
directories = "6.0"
global-hotkey = "0.8"
image = { version = "0.25", default-features = false, features = ["png", "webp"] }
memchr = "2.7"
miette = { version = "7.6", features = ["fancy"] }
mlua = { version = "0.11.6", features = ["lua55", "send", "serde", "vendored"] }
plist = "1.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3.27"
thread_local = "1.1"
time = { version = "0.3", features = ["formatting"] }
tokio = { version = "1.48", features = ["rt-multi-thread", "time"] }
toml = "1.1"
toml_edit = "0.25"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "time"] }
walkdir = "2.5"
core-foundation = "0.10"
core-foundation-sys = "0.8"
core-graphics = "0.25"
objc2 = "0.6"
objc2-app-kit = { version = "0.3.2", features = ["NSApplication", "NSBitmapImageRep", "NSEvent", "NSGraphics", "NSGraphicsContext", "NSImage", "NSImageRep", "NSMenu", "NSMenuItem", "NSPasteboard", "NSRunningApplication", "NSScreen", "NSWorkspace", "block2", "libc"] }
objc2-foundation = { version = "0.3.2", features = ["NSError", "NSProcessInfo", "NSString", "NSURL", "NSValue"] }
objc2-service-management = "0.3.2"
tao = "0.35"
tray-icon = "0.24"
wry = { version = "0.55", features = ["transparent"] }
[patch.crates-io]
tao = { git = "https://github.com/sloppish/tao.git", rev = "c355c45d1323721e759eb7c3dde3fb9533b04e09" }
[profile.release]
strip = true
lto = "thin"
codegen-units = 1
panic = "abort"
[lints.rustdoc]
broken_intra_doc_links = "deny"
[lints.clippy]
dbg_macro = "deny"
todo = "deny"