-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
83 lines (76 loc) · 2.74 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Daniil Polyakov <[email protected]>"]
license-file = "LICENSE"
repository = "https://github.com/arjentix/telepass"
readme = "README.md"
[workspace]
resolver = "2"
members = ["data_model", "crypto", "password_storage", "telegram_gate", "web_app"]
[workspace.dependencies]
telepass_data_model = { path = "data_model" }
telepass_crypto = { path = "crypto", default-features = false }
tokio = { version = "1.39.2", default-features = false }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
dotenvy = "0.15.7"
serde = "1.0.0"
serde_json = "1.0.0"
color-eyre = "0.6.3"
thiserror = "1.0.63"
displaydoc = "0.2.5"
tonic = "0.12.1"
tonic-build = "0.12.1"
tonic-reflection = "0.12.1"
tonic-health = "0.12.1"
prost = "0.13.1"
cfg-if = "1.0.0"
mockall = { version = "0.13.0", features = ["nightly"] }
mockall_double = "0.3.1"
base64 = "0.22.1"
[workspace.lints.rust]
warnings = "deny"
[workspace.lints]
clippy.all = { level = "deny", priority = -1 }
clippy.pedantic = { level = "deny", priority = -1 }
clippy.restriction = { level = "deny", priority = -1 }
clippy.cargo = { level = "deny", priority = -1 }
clippy.nursery = { level = "deny", priority = -1 }
clippy.complexity = { level = "deny", priority = -1 }
clippy.correctness = { level = "deny", priority = -1 }
clippy.perf = { level = "deny", priority = -1 }
clippy.suspicious = { level = "deny", priority = -1 }
clippy.style = { level = "deny", priority = -1 }
clippy.cfg_not_test = "allow"
clippy.blanket-clippy-restriction-lints = "allow"
clippy.implicit-return = "allow"
clippy.self-named-module-files = "allow"
clippy.exhaustive-structs = "allow"
clippy.wildcard-imports = "allow"
clippy.shadow-reuse = "allow"
clippy.std-instead-of-core = "allow"
clippy.std-instead-of-alloc = "allow"
clippy.missing-trait-methods = "allow"
clippy.pub-use = "allow"
clippy.single-match-else = "allow"
clippy.separated-literal-suffix = "allow"
clippy.semicolon-outside-block = "allow"
clippy.question-mark-used = "allow"
clippy.unreachable = "allow"
clippy.exhaustive-enums = "allow"
clippy.partial-pub-fields = "allow"
clippy.semicolon-if-nothing-returned = "allow"
clippy.missing-inline-in-public-items = "allow"
clippy.pub-with-shorthand = "allow"
clippy.absolute-paths = "allow"
clippy.min-ident-chars = "allow"
clippy.error-impl-error = "allow"
clippy.single-call-fn = "allow"
clippy.impl-trait-in-params = "allow"
clippy.no-effect-underscore-binding = "allow"
clippy.module-name-repetitions = "allow"
clippy.renamed-function-params = "allow" # I failed to configure it properly
clippy.multiple-unsafe-ops-per-block = "allow" # Triggers on `await`
# Triggered by dependencies so I can't really do anything with that
clippy.multiple-crate-versions = "allow"