falak 1.0.0

Falak — orbital mechanics engine for Keplerian orbits, perturbations, transfers, and celestial mechanics
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.89"
name = "falak"
version = "1.0.0"
build = false
exclude = [
    ".claude/",
    ".github/",
    "docs/",
    "scripts/",
    "bench-history.csv",
    "BENCHMARKS.md",
    "deny.toml",
    "codecov.yml",
    "rust-toolchain.toml",
    "Makefile",
    "Cargo.lock",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Falak — orbital mechanics engine for Keplerian orbits, perturbations, transfers, and celestial mechanics"
homepage = "https://github.com/MacCracken/falak"
documentation = "https://docs.rs/falak"
readme = "README.md"
keywords = [
    "orbital",
    "mechanics",
    "celestial",
    "kepler",
    "astrodynamics",
]
categories = [
    "science",
    "simulation",
]
license = "GPL-3.0-only"
repository = "https://github.com/MacCracken/falak"

[features]
default = []
logging = ["dep:tracing-subscriber"]
physics = ["dep:impetus"]
soorat-compat = []

[lib]
name = "falak"
path = "src/lib.rs"

[[example]]
name = "celestial_events"
path = "examples/celestial_events.rs"

[[example]]
name = "hohmann_transfer"
path = "examples/hohmann_transfer.rs"

[[example]]
name = "lagrange_points"
path = "examples/lagrange_points.rs"

[[example]]
name = "nbody_simulation"
path = "examples/nbody_simulation.rs"

[[example]]
name = "orbit_propagation"
path = "examples/orbit_propagation.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false

[dependencies.hisab]
version = "1"

[dependencies.impetus]
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"