ashv2 6.0.2

Implementation of the Asynchronous Serial Host (ASH) protocol.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "ashv2"
version = "6.0.2"
authors = ["Richard Neumann <neumann@paulmann.de>"]
build = false
exclude = [
    ".gitignore",
    "TODO.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of the Asynchronous Serial Host (ASH) protocol."
documentation = "https://docs.rs/ashv2"
readme = "README.md"
keywords = [
    "ASH",
    "async",
    "serial",
    "host",
]
categories = [
    "hardware-support",
    "network-programming",
]
license = "MIT"
repository = "https://github.com/PaulmannLighting/ashv2"

[package.metadata.docs.rs]
all-features = true

[features]
clap = ["dep:clap"]

[lib]
name = "ashv2"
path = "src/lib.rs"

[dependencies.bitflags]
version = "2.11"

[dependencies.clap]
version = "4.6"
optional = true

[dependencies.const_env]
version = "0.1"

[dependencies.crc]
version = "3.4"

[dependencies.either]
version = "1.15"

[dependencies.heapless]
version = "0.9"

[dependencies.log]
version = "0.4"

[dependencies.num-derive]
version = "0.4"

[dependencies.num-traits]
version = "0.2"

[dependencies.serialport]
version = "4.9"
default-features = false

[dependencies.tokio]
version = "1.52"
features = [
    "sync",
    "rt",
    "rt-multi-thread",
    "time",
]
default-features = false

[lints.clippy]
as_ptr_cast_mut = "warn"
clear_with_drain = "warn"
collection_is_never_read = "warn"
debug_assert_with_mut_call = "warn"
deref_by_slicing = "warn"
empty_enum_variants_with_brackets = "warn"
fn_to_numeric_cast_any = "warn"
format_push_string = "warn"
implicit_clone = "warn"
incompatible_msrv = "warn"
mem_forget = "warn"
needless_collect = "warn"
needless_pass_by_ref_mut = "warn"
nonstandard_macro_braces = "warn"
panic_in_result_fn = "warn"
path_buf_push_overwrite = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
read_zero_byte_vec = "warn"
redundant_clone = "warn"
redundant_type_annotations = "warn"
string_add = "warn"
string_slice = "warn"
trailing_empty_array = "warn"
transmute_undefined_repr = "warn"
undocumented_unsafe_blocks = "warn"
unnecessary_self_imports = "warn"
unwrap_in_result = "warn"
useless_let_if_seq = "warn"
verbose_file_reads = "warn"

[lints.clippy.all]
level = "warn"
priority = -98

[lints.clippy.cargo]
level = "warn"
priority = -95

[lints.clippy.complexity]
level = "warn"
priority = -100

[lints.clippy.nursery]
level = "warn"
priority = -95

[lints.clippy.pedantic]
level = "warn"
priority = -90

[lints.clippy.perf]
level = "warn"
priority = -95

[lints.clippy.suspicious]
level = "warn"
priority = -95

[lints.rust]
absolute_paths_not_starting_with_crate = "warn"
elided_lifetimes_in_paths = "warn"
for_loops_over_fallibles = "warn"
macro_use_extern_crate = "warn"
meta_variable_misuse = "warn"
missing_docs = "warn"
redundant_lifetimes = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unit_bindings = "warn"
unsafe_code = "warn"
unstable_features = "warn"
unused_crate_dependencies = "warn"
unused_imports = "warn"
unused_qualifications = "warn"
variant_size_differences = "warn"

[lints.rust.keyword_idents]
level = "warn"
priority = -1