-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 986 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 986 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
[workspace]
members = [
"swagger-ui",
]
resolver = "2"
[workspace.package]
edition = "2024"
rust-version = "1.85"
repository = "https://github.com/cot-rs/openapi-guis"
keywords = ["openapi", "gui", "swagger", "api", "documentation"]
readme = "README.md"
authors = [
"Mateusz Maćkowski <mateusz@mackowski.org>",
]
[workspace.lints.rust]
deprecated-safe = "warn"
keyword-idents = "warn"
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unreachable_pub = "warn"
unsafe_code = "warn"
unstable_features = "warn"
unused_import_braces = "warn"
unused_qualifications = "warn"
rust_2018_idioms = { level = "warn", priority = -1 }
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = "warn"
future_not_send = "warn"
[workspace.dependencies]
serde = { version = "1.0.228", default-features = false }
serde_json = { version = "1.0.149", default-features = false }
similar = "3.1"