[package]
edition = "2024"
rust-version = "1.89"
name = "pavan"
version = "1.0.0"
build = false
exclude = [
".claude/",
".github/",
"docs/",
"scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pavan — aerodynamics engine for atmosphere, airfoils, panel methods, VLM, compressible flow, stability, propulsion, and CFD"
homepage = "https://github.com/MacCracken/pavan"
documentation = "https://docs.rs/pavan"
readme = "README.md"
keywords = [
"aerodynamics",
"airfoil",
"lift",
"drag",
"wind",
]
categories = [
"science",
"simulation",
]
license = "GPL-3.0"
repository = "https://github.com/MacCracken/pavan"
[features]
cfd = ["dep:pravash"]
default = []
logging = ["dep:tracing-subscriber"]
[lib]
name = "pavan"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.hisab]
version = "1"
[dependencies.pravash]
version = "1"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
optional = true
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.serde_json]
version = "1"