[package]
edition = "2024"
name = "satellitesfactory"
version = "0.0.3"
authors = ["Rayan Morel <celestial4498@gmail.com>"]
build = false
exclude = [
"target/",
"Cargo.lock",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Satellite factory — classify, build and catalogue natural satellites for any planetary system: Solar System moons (Moon, Galileans, Titan, Triton…) or custom configurations."
homepage = "https://celestial4498-prog.github.io/Celestial/"
documentation = "https://docs.rs/satellitesfactory"
readme = "README.md"
keywords = [
"satellite",
"moon",
"astrophysics",
"simulation",
"orbital-mechanics",
]
categories = [
"science",
"simulation",
]
license = "MIT"
repository = "https://github.com/celestial4498-prog/SatellitesFactory"
[lib]
name = "satellitesfactory"
path = "src/lib.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[example]]
name = "system_generation"
path = "examples/system_generation.rs"
[[example]]
name = "tidal_heating"
path = "examples/tidal_heating.rs"
[[example]]
name = "validation"
path = "examples/validation.rs"
[[test]]
name = "engine_tests"
path = "tests/engine_tests.rs"
[[test]]
name = "physics_tests"
path = "tests/physics_tests.rs"
[[test]]
name = "types_tests"
path = "tests/types_tests.rs"
[dependencies.sciforge]
version = "0.0.2"