decimal-scaled 0.3.2

Const-generic base-10 fixed-point decimals (D9/D18/D38/D76/D153/D307) with integer-only transcendentals correctly rounded to within 0.5 ULP — exact at the type's last representable place. Deterministic across every platform; no_std-friendly.
Documentation
site_name: decimal-scaled
site_description: Const-generic base-10 fixed-point decimals for Rust — bit-exact, 0.5 ULP, no_std-friendly.
site_url: https://mootable.github.io/decimal-scaled/
site_author: John Moxley
repo_url: https://github.com/mootable/decimal-scaled
repo_name: mootable/decimal-scaled
edit_uri: edit/main/docs/
copyright: A Mootable open-source project.

# Source files in docs/ link out to the broader repo tree
# (benches/, examples/, macros/, src/, root README) using
# relative paths so the same files render correctly when
# viewed directly on GitHub. Those targets aren't part of the
# MkDocs site, so MkDocs would normally flag them as broken
# under --strict. Demote out-of-tree link warnings to "ignore"
# so the build still passes — real broken links inside docs/
# still surface via the nav and absolute-link checks.
validation:
  nav:
    omitted_files: warn
    not_found: warn
    absolute_links: warn
  links:
    not_found: ignore
    absolute_links: ignore
    unrecognized_links: ignore

theme:
  name: material
  logo: assets/mootable-cow-dusk.svg
  favicon: assets/mootable-cow-dusk.svg
  font:
    text: Manrope
    code: JetBrains Mono
  icon:
    repo: fontawesome/brands/github
  palette:
    - media: "(prefers-color-scheme: light)"
      scheme: default
      primary: custom
      accent: custom
      toggle:
        icon: material/weather-sunny
        name: Switch to dark mode
    - media: "(prefers-color-scheme: dark)"
      scheme: slate
      primary: custom
      accent: custom
      toggle:
        icon: material/weather-night
        name: Switch to light mode
  features:
    - header.autohide        # header slides away on scroll-down
    - navigation.tabs
    - navigation.sections
    - navigation.top
    - navigation.tracking
    - navigation.indexes
    - search.suggest
    - search.highlight
    - search.share
    - content.code.copy
    - content.code.annotate
    - content.tabs.link
    - content.action.edit
    - toc.follow
    - toc.integrate          # TOC lives inside the left nav, below the page list

extra_css:
  - stylesheets/extra.css

extra:
  social:
    - icon: fontawesome/brands/github
      link: https://github.com/mootable/decimal-scaled
    - icon: fontawesome/brands/rust
      link: https://crates.io/crates/decimal-scaled
  generator: false

nav:
  - Home: index.md
  - Getting started: getting-started.md
  - Guides:
      - Index: guides.md
      - Widths: widths.md
      - Strict mode: strict-mode.md
      - Rounding: rounding.md
      - Macros: macros.md
      - Conversions: conversions.md
      - Cargo features: features.md
  - Benchmarks: benchmarks.md
  - Algorithms: ALGORITHMS.md
  - Roadmap: ROADMAP.md
  - Changelog: CHANGELOG.md
  - API reference (rustdoc): https://mootable.github.io/decimal-scaled/api/decimal_scaled/

markdown_extensions:
  - tables
  - admonition
  - footnotes
  - attr_list
  - md_in_html
  - def_list
  - pymdownx.details
  - pymdownx.superfences
  - pymdownx.tabbed:
      alternate_style: true
  - pymdownx.highlight:
      anchor_linenums: true
      line_spans: __span
      pygments_lang_class: true
  - pymdownx.inlinehilite
  - pymdownx.snippets:
      base_path: ['docs']
      check_paths: true
  - pymdownx.tasklist:
      custom_checkbox: true
  - pymdownx.emoji:
      emoji_index: !!python/name:material.extensions.emoji.twemoji
      emoji_generator: !!python/name:material.extensions.emoji.to_svg
  - toc:
      permalink: true
      toc_depth: 3