msrt-uart 0.1.0

UART adapters for MSRT.
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 = "msrt-uart"
version = "0.1.0"
authors = ["Atlas Orein <gamesworldcraft@gmail.com>"]
build = false
include = [
    "Cargo.toml",
    "README.md",
    "src/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "UART adapters for MSRT."
homepage = "https://github.com/atlas-orien/msrt-adapters"
documentation = "https://docs.rs/msrt-uart"
readme = "README.md"
keywords = [
    "msrt",
    "uart",
    "serial",
    "embedded",
    "tokio",
]
categories = [
    "embedded",
    "no-std",
    "network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/atlas-orien/msrt-adapters"

[features]
default = ["tokio"]
std = ["msrt/std"]
tokio = [
    "std",
    "dep:tokio",
]

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

[dependencies.msrt]
version = "0.1.8"
default-features = false

[dependencies.tokio]
version = "1"
features = [
    "io-util",
    "macros",
    "net",
    "rt-multi-thread",
    "time",
]
optional = true

[lints.clippy]
alloc_instead_of_core = "warn"
std_instead_of_alloc = "warn"
std_instead_of_core = "warn"

[lints.rust]