[package]
edition = "2024"
name = "suns"
version = "0.0.4"
authors = ["Rayan Morel <celestial4498@gmail.com>"]
build = false
exclude = [
"target/",
"Cargo.lock",
]
include = [
"src/",
"tests/",
"examples/",
"Cargo.toml",
"README.md",
"LICENSE",
"Contributing",
"ChangeLog.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sun celestial simulation crate for the MilkyWay SolarSystem workspace"
homepage = "https://celestial4498-prog.github.io/Celestial/"
documentation = "https://docs.rs/suns"
readme = "README.md"
keywords = [
"sun",
"simulation",
"astronomy",
"physics",
"celestial",
]
categories = [
"science",
"simulation",
]
license = "MIT"
repository = "https://github.com/celestial4498-prog/Suns"
[lib]
name = "suns"
path = "src/lib.rs"
[[bin]]
name = "suns"
path = "src/main.rs"
[[example]]
name = "corona_mapping"
path = "examples/corona_mapping.rs"
[[example]]
name = "energy_transport_demo"
path = "examples/energy_transport_demo.rs"
[[example]]
name = "solar_flare_sim"
path = "examples/solar_flare_sim.rs"
[[test]]
name = "events_tests"
path = "tests/events_tests.rs"
[[test]]
name = "interactions_tests"
path = "tests/interactions_tests.rs"
[[test]]
name = "layers_tests"
path = "tests/layers_tests.rs"
[[test]]
name = "physics_tests"
path = "tests/physics_tests.rs"
[[test]]
name = "plasma_tests"
path = "tests/plasma_tests.rs"
[[test]]
name = "rendering_tests"
path = "tests/rendering_tests.rs"
[dependencies.sciforge]
version = "0.0.2"