-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
63 lines (57 loc) · 1.58 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
[package]
name = "tatutanatata"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
aes = "0.8.4"
anyhow = "1.0.94"
argon2 = "0.5.3"
base64 = "0.22.1"
bcrypt = "0.16.0"
cbc = { version = "0.1.2", features = ["alloc"] }
chrono = "0.4.39"
clap = { version = "4.5.27", features = ["derive", "env"] }
dotenvy = "0.15.7"
futures = "0.3.31"
hmac = "0.12.1"
itertools = "0.14.0"
lz4_flex = "0.11.3"
rand = "0.9.0"
regex = "1.11.1"
reqwest = { version = "0.12", default-features = false, features = ["brotli", "charset", "deflate", "gzip", "hickory-dns", "http2", "json", "rustls-tls-webpki-roots"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_path_to_error = "0.1.16"
sha2 = "0.10.8"
tokio = { version = "1.43.0", features = ["fs", "macros", "rt-multi-thread", "signal"] }
tracing = "0.1.41"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
uuid = { version = "1.12.1", features = ["v4"] }
[dev-dependencies]
assert_cmd = "2.0.16"
hex-literal = "0.4.1"
insta = "1.42.1"
predicates = "3.1.2"
similar-asserts = "1.6.1"
tempfile = "3"
[lints.rust]
rust_2018_idioms = { level ="deny", priority = -1 }
missing_copy_implementations = "deny"
missing_debug_implementations = "deny"
unreachable_pub = "deny"
unused_crate_dependencies = "deny"
[lints.clippy]
clone_on_ref_ptr = "deny"
dbg_macro = "deny"
explicit_iter_loop = "deny"
future_not_send = "deny"
todo = "deny"
use_self = "deny"
[lints.rustdoc]
bare_urls = "deny"
broken_intra_doc_links = "deny"
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3