Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions bindgen-tests/tests/expectations/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,25 @@ objc.workspace = true
### FIXME: these might need to be fixed,
### esp the calling convention, because it is a hard error now
# deprecated = "allow"
# invalid-value = "allow"
# invalid_value = "allow"
# unsupported_calling_conventions = "allow"
#
# Different from the workspace
dead_code = "allow"
non-snake-case = "allow"
non_snake_case = "allow"
non_camel_case_types = "allow"
non_upper_case_globals = "allow"
unexpected-cfgs = "allow"
unexpected_cfgs = "allow"
unused_qualifications = "allow"

[lints.clippy]
disallowed-names = "allow"
manual-c-str-literals = "allow"
missing-safety-doc = "allow"
op-ref = "allow"
ptr-offset-with-cast = "allow"
disallowed_names = "allow"
manual_c_str_literals = "allow"
missing_safety_doc = "allow"
op_ref = "allow"
ptr_offset_with_cast = "allow"
semicolon_if_nothing_returned = "allow"
too-many-arguments = "allow"
transmute-int-to-bool = "allow"
unnecessary-cast = "allow"
useless-transmute = "allow"
too_many_arguments = "allow"
transmute_int_to_bool = "allow"
unnecessary_cast = "allow"
useless_transmute = "allow"
Loading