[package]
edition = "2024"
rust-version = "1.93"
name = "interoptopus_backends"
version = "0.16.0"
authors = ["Ralf Biedert <rb@xr.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Utilities for backend authors"
documentation = "https://docs.rs/interoptopus/"
readme = "README.md"
keywords = [
"ffi",
"code-generation",
"bindings",
]
categories = [
"api-bindings",
"development-tools::ffi",
]
license = "MIT"
repository = "https://github.com/ralfbiedert/interoptopus"
[lib]
name = "interoptopus_backends"
path = "src/lib.rs"
[[test]]
name = "casing"
path = "tests/casing.rs"
[[test]]
name = "template"
path = "tests/template.rs"
[dependencies.interoptopus]
version = "=0.16.0"
default-features = false
[dependencies.tar]
version = "0.4.44"
[dependencies.tera]
version = "2.0.0-alpha.6"
[dev-dependencies.insta]
version = "1.43.2"
[lints.clippy]
as_pointer_underscore = "deny"
assertions_on_result_states = "deny"
clone_on_ref_ptr = "deny"
default_constructed_unit_structs = "allow"
deref_by_slicing = "deny"
disallowed_script_idents = "deny"
empty_drop = "deny"
empty_enum_variants_with_brackets = "deny"
fn_to_numeric_cast_any = "deny"
implicit_clone = "deny"
map_err_ignore = "deny"
match_same_arms = "allow"
mem_forget = "deny"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
option_if_let_else = "allow"
redundant_type_annotations = "deny"
unnecessary_safety_comment = "deny"
unnecessary_safety_doc = "deny"
unneeded_field_pattern = "deny"
unreadable_literal = "allow"
unused_result_ok = "deny"
[lints.clippy.complexity]
level = "deny"
priority = -1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.clippy.perf]
level = "deny"
priority = -1
[lints.clippy.style]
level = "deny"
priority = -1
[lints.clippy.suspicious]
level = "deny"
priority = -1