[package]
edition = "2024"
name = "earths"
version = "0.0.4"
authors = ["Rayan Morel <celestial4498@gmail.com>"]
build = false
exclude = [
"target/",
"Cargo.lock",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-fidelity Earth simulation engine — orbit, atmosphere, geology, hydrology, biosphere, terrain, lighting, rendering, satellites, and temporal systems with full scientific coupling"
homepage = "https://celestial4498-prog.github.io/Celestial/"
documentation = "https://docs.rs/earths"
readme = "README.md"
keywords = [
"earth",
"simulation",
"physics",
"geoscience",
"planet",
]
categories = [
"science",
"simulation",
]
license = "MIT"
repository = "https://github.com/celestial4498-prog/earths"
[lib]
name = "earths"
path = "src/lib.rs"
[[bin]]
name = "earths"
path = "src/main.rs"
[[example]]
name = "check_elev"
path = "examples/check_elev.rs"
[[example]]
name = "climate_sim"
path = "examples/climate_sim.rs"
[[example]]
name = "earthquake_sim"
path = "examples/earthquake_sim.rs"
[[example]]
name = "tidal_sim"
path = "examples/tidal_sim.rs"
[[test]]
name = "atmosphere_tests"
path = "tests/atmosphere_tests.rs"
[[test]]
name = "biosphere_tests"
path = "tests/biosphere_tests.rs"
[[test]]
name = "geodata_tests"
path = "tests/geodata_tests.rs"
[[test]]
name = "geology_tests"
path = "tests/geology_tests.rs"
[[test]]
name = "hydrology_tests"
path = "tests/hydrology_tests.rs"
[[test]]
name = "lighting_tests"
path = "tests/lighting_tests.rs"
[[test]]
name = "physics_tests"
path = "tests/physics_tests.rs"
[[test]]
name = "satellites_tests"
path = "tests/satellites_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"