[package]
edition = "2021"
rust-version = "1.75.0"
name = "smmu-cli"
version = "1.2.1"
authors = ["ARM SMMU v3 Implementation Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for ARM SMMU v3 simulation and testing"
homepage = "https://github.com/jpgreninger/smmu"
documentation = "https://docs.rs/smmu"
readme = "README.md"
keywords = [
"smmu",
"iommu",
"cli",
"simulation",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jpgreninger/smmu"
[[bin]]
name = "smmu-cli"
path = "src/main.rs"
[dependencies.smmu]
version = "1.0.0"
[lints.clippy]
cast_lossless = "warn"
cast_possible_truncation = "warn"
cast_possible_wrap = "warn"
cast_sign_loss = "warn"
checked_conversions = "warn"
cloned_instead_of_copied = "warn"
explicit_deref_methods = "warn"
explicit_into_iter_loop = "warn"
explicit_iter_loop = "warn"
filter_map_next = "warn"
flat_map_option = "warn"
fn_params_excessive_bools = "warn"
implicit_clone = "warn"
inefficient_to_string = "warn"
invalid_upcast_comparisons = "warn"
large_digit_groups = "warn"
large_stack_arrays = "warn"
large_types_passed_by_value = "warn"
manual_ok_or = "warn"
map_unwrap_or = "warn"
match_same_arms = "warn"
match_wildcard_for_single_variants = "warn"
module_name_repetitions = "allow"
must_use_candidate = "warn"
needless_continue = "warn"
needless_pass_by_value = "warn"
semicolon_if_nothing_returned = "warn"
single_match_else = "warn"
too_many_lines = "warn"
trivially_copy_pass_by_ref = "warn"
unreadable_literal = "warn"
unused_self = "warn"
used_underscore_binding = "warn"
[lints.clippy.cargo]
level = "warn"
priority = 1
[lints.clippy.complexity]
level = "warn"
priority = 5
[lints.clippy.correctness]
level = "deny"
priority = 10
[lints.clippy.nursery]
level = "warn"
priority = 1
[lints.clippy.pedantic]
level = "warn"
priority = 1
[lints.clippy.perf]
level = "warn"
priority = 5
[lints.clippy.style]
level = "warn"
priority = 5
[lints.clippy.suspicious]
level = "deny"
priority = 10
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
rust_2018_idioms = "warn"
unsafe_code = "warn"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]