-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 974 Bytes
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 974 Bytes
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
[package]
name = "openapi-test-server"
version = "0.2.1"
edition = "2024"
description = "A web server for testing OpenAPI clients."
authors = ["Dylan Anthony <contact@dylananthony.com>"]
license = "Apache-2.0"
[dependencies]
actix-multipart = "0.7.2"
actix-web = { version = "4.11.0", default-features = false, features = ["macros"] }
serde = { version = "1.0.192", features = ["derive"] }
time = {version = "0.3.41", features = ["serde-human-readable"]}
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
[lints.rust]
unsafe_code = "forbid"
warnings = "deny"
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
# cargo-deny handles this
multiple_crate_versions = "allow"
# Don't panic!
panic = "deny"
exit = "deny"
unimplemented = "deny"
todo = "deny"
expect_used = "deny"
unwrap_used = "deny"
indexing_slicing = "deny"
missing_panics_doc = "forbid"
# Use `tracing`, not print
print_stdout = "deny"
print_stderr = "deny"