[package]
edition = "2024"
name = "charmed-harmonica"
version = "0.1.2"
authors = ["Jeffrey Emanuel"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Physics-based animation tools: spring oscillator and projectile motion"
homepage = "https://github.com/Dicklesworthstone/charmed_rust"
documentation = "https://docs.rs/charmed-harmonica"
readme = "README.md"
keywords = [
"animation",
"spring",
"physics",
"tui",
"terminal",
]
categories = [
"game-development",
"simulation",
"no-std",
]
license = "MIT"
repository = "https://github.com/Dicklesworthstone/charmed_rust"
resolver = "2"
[features]
default = ["std"]
std = []
[lib]
name = "harmonica"
path = "src/lib.rs"
[[test]]
name = "physics_edge_cases"
path = "tests/physics_edge_cases.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[dependencies.libm]
version = "0.2"
optional = true
[dev-dependencies.proptest]
version = "1.9.0"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"