[package]
edition = "2024"
name = "deimoss"
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 = "Deimos celestial simulation crate for the MilkyWay SolarSystem workspace"
homepage = "https://celestial4498-prog.github.io/Celestial/"
documentation = "https://docs.rs/deimoss"
readme = "README.md"
keywords = [
"deimos",
"simulation",
"astronomy",
"physics",
"celestial",
]
categories = [
"science",
"simulation",
]
license = "MIT"
repository = "https://github.com/celestial4498-prog/Deimos"
[lib]
name = "deimoss"
path = "src/lib.rs"
[[bin]]
name = "deimoss"
path = "src/main.rs"
[[example]]
name = "check_landing_site"
path = "examples/check_landing_site.rs"
[[example]]
name = "crater_sim"
path = "examples/crater_sim.rs"
[[example]]
name = "eclipse_sim"
path = "examples/eclipse_sim.rs"
[[example]]
name = "exosphere_sim"
path = "examples/exosphere_sim.rs"
[[example]]
name = "mars_observation"
path = "examples/mars_observation.rs"
[[example]]
name = "orbital_sim"
path = "examples/orbital_sim.rs"
[[example]]
name = "radiation_sim"
path = "examples/radiation_sim.rs"
[[example]]
name = "resource_survey"
path = "examples/resource_survey.rs"
[[example]]
name = "tidal_effects"
path = "examples/tidal_effects.rs"
[[test]]
name = "environment_tests"
path = "tests/environment_tests.rs"
[[test]]
name = "exosphere_tests"
path = "tests/exosphere_tests.rs"
[[test]]
name = "geodata_tests"
path = "tests/geodata_tests.rs"
[[test]]
name = "geology_tests"
path = "tests/geology_tests.rs"
[[test]]
name = "interactions_tests"
path = "tests/interactions_tests.rs"
[[test]]
name = "lighting_tests"
path = "tests/lighting_tests.rs"
[[test]]
name = "missions_tests"
path = "tests/missions_tests.rs"
[[test]]
name = "observation_tests"
path = "tests/observation_tests.rs"
[[test]]
name = "physics_tests"
path = "tests/physics_tests.rs"
[[test]]
name = "rendering_tests"
path = "tests/rendering_tests.rs"
[[test]]
name = "resources_tests"
path = "tests/resources_tests.rs"
[[test]]
name = "surface_tests"
path = "tests/surface_tests.rs"
[[test]]
name = "temporal_tests"
path = "tests/temporal_tests.rs"
[[test]]
name = "terrain_tests"
path = "tests/terrain_tests.rs"
[dependencies.sciforge]
version = "0.0.2"