[package]
edition = "2024"
name = "os_observatory"
version = "0.1.1"
authors = ["AI Assistant (GPT-5-medium) based on an idea by alisio85"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Independent, no-deps observability toolkit for OS development: logging, tracing, and panic reporting designed for no_std environments."
documentation = "https://docs.rs/os_observatory"
readme = "README.md"
keywords = [
"os",
"kernel",
"no_std",
"logging",
"tracing",
]
categories = [
"embedded",
"development-tools::debugging",
"no-std",
]
license = "MIT"
repository = "https://github.com/alisio85/os_observatory"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
alloc = []
std = []
[lib]
name = "os_observatory"
crate-type = ["rlib"]
path = "src/lib.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"