[package]
edition = "2024"
rust-version = "1.87"
name = "framepace"
version = "0.1.0-alpha.0"
authors = ["Matan Lurey <matan@lurey.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rolling frame-time statistics for game loops and real-time applications"
homepage = "https://github.com/crates-lurey-io/framepace"
documentation = "https://docs.rs/framepace"
readme = "README.md"
keywords = [
"game-development",
"performance",
"timing",
"frame-rate",
"profiling",
]
categories = [
"game-development",
"development-tools::profiling",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/crates-lurey-io/framepace"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "framepace"
path = "src/lib.rs"
[lints.clippy]
indexing_slicing = "allow"
missing_errors_doc = "deny"
missing_panics_doc = "deny"
module_name_repetitions = "allow"
must_use_candidate = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "deny"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_qualifications = "warn"