[package]
edition = "2024"
rust-version = "1.94.0"
name = "ph-surfaces"
version = "0.1.0"
build = false
include = [
"src/**/*.rs",
"examples/**/*.rs",
"Cargo.toml",
"LICENSE",
"/README.md",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic no-std, no-alloc integer surface mappings for embedded Rust"
documentation = "https://docs.rs/ph-surfaces"
readme = "README.md"
keywords = [
"no-std",
"no-alloc",
"embedded",
"interpolation",
]
categories = [
"no-std",
"no-std::no-alloc",
"embedded",
"mathematics",
]
license = "MIT"
repository = "https://github.com/photon-circus/ph-surfaces"
[package.metadata.docs.rs]
targets = [
"x86_64-unknown-linux-gnu",
"thumbv7em-none-eabi",
"riscv32imac-unknown-none-elf",
]
[lib]
name = "ph_surfaces"
path = "src/lib.rs"
[[example]]
name = "fail_safe_boundaries"
path = "examples/fail_safe_boundaries.rs"
[[example]]
name = "firmware_cost_budget"
path = "examples/firmware_cost_budget.rs"
[[example]]
name = "firmware_quickstart"
path = "examples/firmware_quickstart.rs"
[[example]]
name = "mixed_calibration_map"
path = "examples/mixed_calibration_map.rs"
[[example]]
name = "uniform_sensor_compensation"
path = "examples/uniform_sensor_compensation.rs"
[dependencies]
[dev-dependencies]
[build-dependencies]