-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (41 loc) · 959 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
36
37
38
39
40
41
42
43
44
45
46
47
[workspace]
members = [
"otap",
"libotap"
]
default-members = [
"otap",
"libotap",
"."
]
resolver = "2"
[workspace.package]
version = "0.1.0"
description = "API Client library for Open Build Service."
authors = [
"Soc Virnyl Estela <[email protected]>",
"Gordon Leung <[email protected]>"
]
edition = "2021"
license = "EUPL-1.2"
homepage = "https://codeberg.org/uncomfyhalomacro/otap"
repository = "https://codeberg.org/uncomfyhalomacro/otap"
[workspace.lints.rust]
warnings = "deny"
unused_extern_crates = "warn"
[workspace.lints.clippy]
# Enable some groups of clippy lints.
suspicious = "deny"
perf = "deny"
# Specific lints to enforce.
todo = "warn"
unimplemented = "deny"
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"
await_holding_lock = "deny"
needless_pass_by_value = "deny"
trivially_copy_pass_by_ref = "deny"
disallowed_types = "deny"
manual_let_else = "deny"
lint_groups_priority = "allow"