at-parser-rs 0.1.7

A flexible AT command parser for embedded systems and communication devices with no_std support
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 = "at-parser-rs"
version = "0.1.7"
authors = ["Antonio Salsi <passy.linux@zresa.it>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A flexible AT command parser for embedded systems and communication devices with no_std support"
homepage = "https://github.com/HiHappyGarden/at-parser-rs"
documentation = "https://docs.rs/at-parser-rs"
readme = "README.md"
keywords = [
    "at-commands",
    "parser",
    "embedded",
    "no-std",
    "communication",
]
categories = [
    "embedded",
    "no-std",
    "parser-implementations",
]
license = "GPL-3.0"
repository = "https://github.com/HiHappyGarden/at-parser-rs.git"

[features]
default = []
enable_panic = []
osal_rs = ["dep:osal-rs"]

[lib]
name = "at_parser_rs"
crate-type = ["rlib"]
path = "src/lib.rs"

[[example]]
name = "basic_parser"
path = "examples/basic_parser.rs"

[[example]]
name = "complete_usage"
path = "examples/complete_usage.rs"

[[example]]
name = "embedded_basic"
path = "examples/embedded_basic.rs"

[[example]]
name = "embedded_error_handling"
path = "examples/embedded_error_handling.rs"

[[example]]
name = "embedded_uart_config"
path = "examples/embedded_uart_config.rs"

[dependencies.osal-rs]
version = "0.4"
features = ["freertos"]
optional = true

[profile.dev]
debug = 2
panic = "abort"

[profile.release]
opt-level = "z"
lto = true
debug = 2
panic = "abort"