-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (42 loc) · 1.2 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
[workspace]
members = ["kadmin-sys", "kadmin", "python-kadmin-rs"]
resolver = "2"
[workspace.package]
authors = [
"Marc 'risson' Schmitt <[email protected]>",
"authentik community <[email protected]>",
]
edition = "2021"
rust-version = "1.77"
readme = "README.md"
homepage = "https://github.com/authentik-community/kadmin-rs"
repository = "https://github.com/authentik-community/kadmin-rs.git"
license = "MIT"
[workspace.lints.rust]
missing_docs = "warn"
semicolon_in_expressions_from_macros = "warn"
unreachable_pub = "warn"
unused_import_braces = "warn"
unused_qualifications = "warn"
[workspace.lints.rustdoc]
missing_crate_level_docs = "warn"
unescaped_backticks = "warn"
[workspace.lints.clippy]
branches_sharing_code = "warn"
cloned_instead_of_copied = "warn"
dbg_macro = "warn"
disallowed_types = "warn"
empty_line_after_outer_attr = "warn"
exhaustive_enums = "warn"
exhaustive_structs = "warn"
inefficient_to_string = "warn"
macro_use_imports = "warn"
map_flatten = "warn"
missing_enforced_import_renames = "warn"
mut_mut = "warn"
nonstandard_macro_braces = "warn"
semicolon_if_nothing_returned = "warn"
str_to_string = "warn"
todo = "warn"
unreadable_literal = "warn"
unseparated_literal_suffix = "warn"