physics_sandbox 0.1.4

Small rigid-body physics sandbox with pluggable integrators, environments, collisions and an event bus. Optional retro ASCII terminal visualization.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "physics_sandbox"
version = "0.1.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Small rigid-body physics sandbox with pluggable integrators, environments, collisions and an event bus. Optional retro ASCII terminal visualization."
homepage = "https://github.com/Lucas8448/sandbox"
documentation = "https://docs.rs/physics_sandbox"
readme = "README.md"
keywords = [
    "physics",
    "simulation",
    "rigid-body",
    "rk4",
    "ascii",
]
categories = [
    "simulation",
    "science",
    "visualization",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Lucas8448/sandbox"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = []
viz = ["dep:crossterm"]

[lib]
name = "physics_sandbox"
path = "src/lib.rs"

[[example]]
name = "drone"
path = "examples/drone.rs"

[[example]]
name = "drones_formation"
path = "examples/drones_formation.rs"
required-features = ["viz"]

[[example]]
name = "missile"
path = "examples/missile.rs"

[[example]]
name = "missile_multiview"
path = "examples/missile_multiview.rs"
required-features = ["viz"]

[[example]]
name = "missile_svg"
path = "examples/missile_svg.rs"
required-features = ["viz"]

[[example]]
name = "missile_viz"
path = "examples/missile_viz.rs"
required-features = ["viz"]

[[example]]
name = "missile_viz_3d"
path = "examples/missile_viz_3d.rs"
required-features = ["viz"]

[dependencies.crossterm]
version = "0.28"
optional = true