[package]
edition = "2024"
rust-version = "1.97"
name = "renew-frame"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fixed-timestep frame scheduling: the accumulator, the step budget, and the render interpolation factor"
homepage = "https://renew-engine.github.io/renew/"
readme = "README.md"
keywords = [
"gamedev",
"fixed-timestep",
"game-loop",
"deterministic",
"engine",
]
categories = [
"game-development",
"simulation",
]
license = "Apache-2.0"
repository = "https://github.com/renew-engine/renew"
[package.metadata.renew]
purpose = "Fixed-timestep frame scheduling: the deterministic accumulator, the step budget that bounds a stall, and the exact rational a renderer interpolates by, as integers."
maturity = "bootstrap"
core = false
extension_points = []
simulation = true
[features]
sanitized = []
[lib]
name = "renew_frame"
path = "src/lib.rs"
[[test]]
name = "determinism"
path = "tests/determinism.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "zero_alloc"
path = "tests/zero_alloc.rs"
[dependencies]
[dev-dependencies.proptest]
version = "1.11"
[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
panic = "deny"
todo = "deny"
undocumented_unsafe_blocks = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"