[package]
edition = "2024"
rust-version = "1.85"
name = "nostd-printf"
version = "0.1.4"
authors = [
"wfdewith <wf@dewith.io>",
"WorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com>",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust crate containing an embedded version of printf which can be used in `no_std` projects which aren't linked to `libc`."
documentation = "https://docs.rs/nostd-printf"
readme = "README.md"
keywords = [
"nostd",
"printf",
]
categories = [
"embedded",
"os",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/WorksButNotTested/nostd-printf"
[features]
default = []
[lib]
name = "nostd_printf"
crate-type = ["rlib"]
path = "src/lib.rs"
[dev-dependencies.once_cell]
version = "1.17"
[build-dependencies.bindgen]
version = "0.71.1"
[build-dependencies.cc]
version = "1.2.20"
[build-dependencies.just]
version = "1.40.0"