osal-rs 1.0.2

Operating System Abstraction Layer for Rust with support for FreeRTOS and POSIX
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"
rust-version = "1.85.0"
name = "osal-rs"
version = "1.0.2"
authors = ["Antonio Salsi"]
build = "build.rs"
exclude = [
    "target/",
    ".git/",
    ".github/",
    "*.swp",
    "*.swo",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Operating System Abstraction Layer for Rust with support for FreeRTOS and POSIX"
homepage = "https://github.com/HiHappyGarden/osal-rs"
documentation = "https://docs.rs/osal-rs"
readme = "README.md"
keywords = [
    "os",
    "rtos",
    "freertos",
    "embedded",
    "posix",
]
categories = [
    "embedded",
    "no-std",
    "os",
]
license = "LGPL-2.1-or-later"
repository = "https://github.com/HiHappyGarden/osal-rs"

[package.metadata.docs.rs]
features = [
    "posix",
    "async",
    "serde",
]
no-default-features = true
default-target = "x86_64-unknown-linux-gnu"
targets = []
rustdoc-args = []

[features]
async = []
freertos = ["osal-rs-build/freertos"]
posix = ["osal-rs-build/posix"]
real_time = []
serde = ["osal-rs-serde"]

[lib]
name = "osal_rs"
crate-type = [
    "staticlib",
    "rlib",
]
path = "src/lib.rs"

[[test]]
name = "std_api_surface"
path = "tests/std_api_surface.rs"

[[test]]
name = "std_async_tests"
path = "tests/std_async_tests.rs"

[[test]]
name = "std_duration_tests"
path = "tests/std_duration_tests.rs"

[[test]]
name = "std_event_group_tests"
path = "tests/std_event_group_tests.rs"

[[test]]
name = "std_mutex_tests"
path = "tests/std_mutex_tests.rs"

[[test]]
name = "std_queue_tests"
path = "tests/std_queue_tests.rs"

[[test]]
name = "std_semaphore_tests"
path = "tests/std_semaphore_tests.rs"

[[test]]
name = "std_system_tests"
path = "tests/std_system_tests.rs"

[[test]]
name = "std_thread_tests"
path = "tests/std_thread_tests.rs"

[[test]]
name = "std_timer_tests"
path = "tests/std_timer_tests.rs"

[[test]]
name = "std_utils_tests"
path = "tests/std_utils_tests.rs"

[dependencies.osal-rs-serde]
version = "1.0"
features = ["derive"]
optional = true

[build-dependencies.osal-rs-build]
version = "1.0"
default-features = false

[profile.dev]
panic = "abort"

[profile.release]
panic = "abort"