-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (32 loc) · 946 Bytes
/
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
[package]
name = "frozenbbs"
version = "1.4.0"
edition = "2021"
build = "build.rs"
[dependencies]
chrono = "0.4.39"
clap = { version = "4.5.23", features = ["derive"] }
config = { version = "0.15.4", features = ["preserve_order"] }
diesel = { version = "2.2.6", features = ["sqlite", "returning_clauses_for_sqlite_3_35", "time"] }
log = "0.4.22"
meshtastic = "0.1.6"
once_cell = "1.20.2"
regex = "1.11.1"
serde = { version = "1.0.216", features = ["derive"] }
simple_logger = "5.0.0"
tokio = "1.42.0"
toml = "0.8.19"
validator = { version = "0.20", features = ["derive"] }
xdg = "2.5.2"
[build-dependencies]
vergen-git2 = { version = "1.0.2", features = ["build"] }
[lints.clippy]
assigning_clones = "warn"
cast_lossless = "warn"
cast_possible_truncation = "warn"
explicit_iter_loop = "warn"
manual_let_else = "warn"
manual_string_new = "warn"
needless_pass_by_value = "warn"
semicolon_if_nothing_returned = "warn"
unreadable_literal = "warn"