forked from espanso/espanso
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (72 loc) · 1.71 KB
/
Cargo.toml
File metadata and controls
77 lines (72 loc) · 1.71 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
[workspace]
resolver = "2"
members = [
"espanso",
"espanso-detect",
"espanso-ui",
"espanso-inject",
"espanso-ipc",
"espanso-config",
"espanso-match",
"espanso-clipboard",
"espanso-render",
"espanso-info",
"espanso-modulo",
"espanso-mac-utils",
"espanso-kvs",
"espanso-engine",
"espanso-package",
]
[workspace.lints.clippy]
enum_glob_use = "deny"
semicolon_if_nothing_returned = "deny"
wildcard_imports = "deny"
as_conversions = "allow"
borrow_as_ptr = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
items_after_statements = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
no_effect_underscore_binding = "allow"
ptr_as_ptr = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
struct_field_names = "allow"
too_many_lines = "allow"
unnecessary_wraps = "allow"
unused_self = "allow"
used_underscore_binding = "allow"
pedantic = { level = "warn", priority = -2 }
[workspace.dependencies]
anyhow = "1.0.38"
cc = "1.2.30"
chrono = { version = "0.4.41", features = ["unstable-locales"] }
chrono-tz = "0.10"
crossbeam = "0.8.0"
dirs = "3.0.1"
enum-as-inner = "0.6.0"
fs_extra = "1.3.0"
glob = "0.3.0"
lazycell = "1.3.0"
log = "0.4.14"
notify-rust = "4.11.7"
regex = "1.5.5"
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.62"
serde_norway = "0.9.42"
tauri-winrt-notification = "0.7.2"
tempdir = "0.3.7"
thiserror = "1.0.23"
walkdir = "2.3.1"
widestring = "0.4.3"
windows = { version = "0.61.1", features = [
"Win32_UI_WindowsAndMessaging",
"Win32_System_Console",
] }