[package]
edition = "2024"
name = "fphics"
version = "0.1.0"
authors = ["Ethan <kigangadarell@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure zero-dependency rust physics and maths library that deals with mathematical conversions, and physics calculations using accurate, verified formulas - with zero estimations to ensure accuracy"
readme = "README.md"
keywords = [
"kinematics",
"maths",
"lightweight",
"efficient",
"accurate",
]
categories = [
"science",
"mathematics",
"game-development",
"simulation",
"algorithms",
]
license = "MIT"
repository = "https://github.com/Darethan026/fphics/"
[lib]
name = "fphics"
path = "src/lib.rs"
[[example]]
name = "calc_time"
path = "examples/calc_time.rs"
[[example]]
name = "cm_to_m"
path = "examples/cm_to_m.rs"
[[example]]
name = "metric_to_imperial"
path = "examples/metric_to_imperial.rs"
[dependencies]