forked from espanso/espanso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
68 lines (65 loc) · 1.46 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
61
62
63
64
65
66
67
68
[workspace]
resolver = "2"
members = [
"espanso",
"espanso-detect",
"espanso-ui",
"espanso-inject",
"espanso-ipc",
"espanso-config",
"espanso-match",
"espanso-clipboard",
"espanso-render",
"espanso-info",
"espanso-path",
"espanso-modulo",
"espanso-migrate",
"espanso-mac-utils",
"espanso-kvs",
"espanso-engine",
"espanso-package",
]
[workspace.lints.clippy]
too_many_lines = "allow"
needless_pass_by_value = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
cast_possible_wrap = "allow"
module_name_repetitions = "allow"
match_same_arms = "allow"
unnecessary_wraps = "allow"
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
cast_lossless = "allow"
ptr_as_ptr = "allow"
as_conversions = "allow"
used_underscore_binding = "allow"
no_effect_underscore_binding = "allow"
borrow_as_ptr = "allow"
must_use_candidate = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
wildcard_imports = "allow"
items_after_statements = "allow"
struct_field_names = "allow"
unused_self = "allow"
pedantic = { level = "warn", priority = -2 }
[workspace.dependencies]
anyhow = "1.0.38"
cc = "1.0.73"
crossbeam = "0.8.0"
dirs = "3.0.1"
enum-as-inner = "0.6.0"
fs_extra = "1.3.0"
glob = "0.3.0"
lazy_static = "1.4.0"
lazycell = "1.3.0"
log = "0.4.14"
regex = "1.5.5"
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.62"
serde_yaml = "0.8.17"
tempdir = "0.3.7"
thiserror = "1.0.23"
walkdir = "2.3.1"
widestring = "0.4.3"