-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
60 lines (56 loc) · 1.44 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
53
54
55
56
57
58
59
60
[package]
name = "clavy"
version = "0.1.0-alpha7"
license = "GPL-3.0"
edition = "2021"
homepage = "https://github.com/rami3l/clavy"
repository = "https://github.com/rami3l/clavy"
description = "An input source switching daemon for macOS."
readme = "README.md"
[dependencies]
accessibility-sys = "0.1.3"
block2 = "0.5.1"
clap = { version = "4.5.23", features = ["cargo", "derive", "env"] }
core-foundation = "0.10.0"
core-graphics = "0.24.0"
embed_plist = "1.2.2"
launchctl = "0.3.2"
libc = "0.2.169"
objc2 = "0.5.2"
objc2-app-kit = { version = "0.2.2", features = [
"libc",
"NSRunningApplication",
"NSWorkspace",
] }
objc2-foundation = { version = "0.2.2", features = [
"NSDictionary",
"NSDistributedNotificationCenter",
"NSEnumerator",
"NSKeyValueObserving",
"NSNotification",
"NSOperation",
"NSRange",
"NSString",
"block2",
] }
smol = "2.0.2"
thiserror = "2.0.9"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
[build-dependencies]
built = { version = "0.7.4", features = ["git2"] }
[lints.rust]
rust_2018_idioms = { level = "deny", priority = -1 }
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
trivial_numeric_casts = "warn"
unused_allocation = "warn"
[lints.clippy]
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
dbg_macro = "warn"
todo = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
wildcard_imports = "allow"