[package]
edition = "2024"
name = "cometsfactory"
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 = "Comet factory — classify, build and catalogue comets of any type: short-period, long-period, Halley-type, sungrazer, interstellar, main-belt comet, centaur-transition, and extinct."
homepage = "https://celestial4498-prog.github.io/Celestial/"
documentation = "https://docs.rs/cometsfactory"
readme = "README.md"
keywords = [
"comet",
"astrophysics",
"simulation",
"orbital-mechanics",
"coma",
]
categories = [
"science",
"simulation",
]
license = "MIT"
repository = "https://github.com/celestial4498-prog/CometsFactory"
[lib]
name = "cometsfactory"
path = "src/lib.rs"
[[example]]
name = "generation"
path = "examples/generation.rs"
[[example]]
name = "observables"
path = "examples/observables.rs"
[[example]]
name = "physics"
path = "examples/physics.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"