fluor 0.0.0

First-principles GUI compositor library: center-origin RU coordinates, harmonic-mean span scaling, CPU softbuffer rendering, ARM-first.
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"
name = "fluor"
version = "0.0.0"
authors = ["Nick Spiker <fractaldecoder@proton.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "First-principles GUI compositor library: center-origin RU coordinates, harmonic-mean span scaling, CPU softbuffer rendering, ARM-first."
homepage = "https://github.com/nickspiker/fluor"
documentation = "https://docs.rs/fluor"
readme = "README.md"
keywords = [
    "gui",
    "compositor",
    "windowing",
    "graphics",
    "ui",
]
categories = [
    "gui",
    "graphics",
    "rendering",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nickspiker/fluor"

[features]
default = [
    "std",
    "host-winit",
    "text",
    "simd",
]
host-bare = []
host-softbuffer = [
    "std",
    "dep:softbuffer",
]
host-winit = [
    "std",
    "dep:winit",
    "dep:softbuffer",
]
simd = []
std = []
text = [
    "std",
    "dep:cosmic-text",
]

[lib]
name = "fluor"
crate-type = ["rlib"]
path = "src/lib.rs"

[[example]]
name = "panes"
path = "examples/panes.rs"

[dependencies.cosmic-text]
version = "0.14"
optional = true

[dependencies.softbuffer]
version = "0.4"
optional = true

[dependencies.spirix]
version = "0.0.12"
features = ["alloc"]
default-features = false

[dependencies.winit]
version = "0.30"
optional = true

[dev-dependencies.proptest]
version = "1.5"

[profile.debuggable]
debug = "line-tables-only"
inherits = "dev"

[profile.dev]
opt-level = 2
lto = false
codegen-units = 16
debug = 0
debug-assertions = false
overflow-checks = false
incremental = true

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
overflow-checks = false
strip = true