-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
81 lines (67 loc) · 2.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
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "meetings"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Web application to help organize meetings."
keywords = ["web", "server", "rocket"]
categories = ["web-programming::http-server"]
readme = "README.md"
repository = "https://github.com/szabgab/meet-os.rs/"
homepage = "https://meet-os.com/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3", features = ["derive"] }
simple_logger = "4.2"
log = "0.4"
rocket = { version = "0.5", features = ["secrets", "uuid"] }
rocket_dyn_templates = { version = "0.1", features = ["tera"] }
sendgrid = "0.20"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yml = "0.0.12"
surrealdb = "2.0"
tokio = { version = "1.35", features = ["macros", "rt-multi-thread"] }
markdown = "1.0.0-alpha.18"
uuid = { version = "1.6", features = ["v4"] }
validator = "0.16"
regex = "1.10"
tokio-test = "0.4"
reqwest = { version = "0.11", features = ["blocking"] }
pbkdf2 = "0.12.2"
chrono = "0.4.38"
[dev-dependencies]
tempfile = "3.12.0"
rand = "0.8.5"
fork = "0.1"
nix = { version = "0.27", features = ["signal"] }
scraper = "0.18"
[lints.clippy]
pedantic = { priority = -1, level = "deny" }
no_effect_underscore_binding = "allow" # https://github.com/rust-lang/rust-clippy/issues/12166
suspicious = { priority = -1, level = "deny" }
complexity = { priority = -1, level = "deny" }
perf = { priority = -1, level = "deny" }
style = { priority = -1, level = "deny" }
restriction = { priority = -1, level = "deny" }
single_call_fn = "allow"
missing_docs_in_private_items = "allow"
shadow_same = "allow"
redundant_type_annotations = "allow"
let_underscore_must_use = "allow"
implicit_return = "allow"
unwrap_used = "allow"
expect_used = "allow"
shadow_reuse = "allow"
unwrap_in_result = "allow"
blanket_clippy_restriction_lints = "allow" # huh?
pub_use = "allow"
single_char_lifetime_names = "allow"
exhaustive-structs = "allow"
question_mark_used = "allow"
missing_inline_in_public_items = "allow"
missing_errors_doc = "allow"
cargo = { priority = -1, level = "deny" }
multiple_crate_versions = "allow" # see https://rust-lang.github.io/rust-clippy/master/index.html#/multiple_crate_versions
blocks_in_conditions = "allow" # We get some strange reports at struct definitions and not in if blocks. Let's disable this for now.
separated_literal_suffix = "allow" # I think it is more readable to write 3_i16 than to write 3i16.