[package]
edition = "2024"
rust-version = "1.85"
name = "rs-teststand-sys"
version = "0.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level COM interop layer for the National Instruments TestStand™ COM API. All unsafe code in the rs-teststand workspace lives here"
readme = "README.md"
keywords = [
"teststand",
"national-instruments",
"ni",
"com",
"test-automation",
]
categories = [
"api-bindings",
"os::windows-apis",
]
license = "MIT"
repository = "https://github.com/TheDomcio/rs-teststand"
[lib]
name = "rs_teststand_sys"
path = "src/lib.rs"
[dependencies.windows]
version = "0.62.2"
features = [
"Win32_System_Com",
"Win32_System_Ole",
"Win32_System_Variant",
"Win32_Foundation",
"Win32_Globalization",
"Win32_UI_WindowsAndMessaging",
"Win32_System_Threading",
]
[dependencies.windows-core]
version = "0.62.2"
[lints.clippy]
clone_on_ref_ptr = "deny"
dbg_macro = "deny"
doc_markdown = "deny"
empty_structs_with_brackets = "deny"
enum_glob_use = "deny"
exit = "deny"
expect_used = "deny"
float_cmp = "deny"
fn_to_numeric_cast_any = "deny"
format_push_string = "deny"
indexing_slicing = "deny"
integer_division = "deny"
lossy_float_literal = "deny"
mem_forget = "deny"
panic = "deny"
partial_pub_fields = "deny"
same_name_method = "deny"
todo = "deny"
try_err = "deny"
undocumented_unsafe_blocks = "deny"
unimplemented = "deny"
unnecessary_safety_comment = "deny"
unreachable = "deny"
unwrap_used = "deny"
verbose_file_reads = "deny"
wildcard_imports = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.multiple_crate_versions]
level = "allow"
priority = 1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.clippy.redundant_pub_crate]
level = "allow"
priority = 1
[lints.rust]
missing_debug_implementations = "deny"
missing_docs = "deny"
trivial_casts = "deny"
trivial_numeric_casts = "deny"
unreachable_pub = "deny"
unsafe_op_in_unsafe_fn = "deny"
unused_qualifications = "deny"
[lints.rust.future_incompatible]
level = "deny"
priority = -1
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1
[lints.rustdoc]
bare_urls = "deny"
broken_intra_doc_links = "deny"
invalid_codeblock_attributes = "deny"
invalid_html_tags = "deny"
invalid_rust_codeblocks = "deny"
private_intra_doc_links = "deny"