tslime 0.1.2

A lightweight terminal screensaver simulating slime mold growth patterns
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 = "2021"
rust-version = "1.70"
name = "tslime"
version = "0.1.2"
authors = ["tslime contributors"]
build = false
exclude = [
    ".github/",
    "assets/demos/*.gif",
    "tests/golden/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight terminal screensaver simulating slime mold growth patterns"
homepage = "https://github.com/tamirelazar/tslime"
documentation = "https://docs.rs/tslime"
readme = "README.md"
keywords = [
    "terminal",
    "screensaver",
    "slime-mold",
    "generative-art",
    "physarum",
]
categories = [
    "command-line-utilities",
    "visualization",
    "simulation",
]
license = "MIT"
repository = "https://github.com/tamirelazar/tslime"

[features]
audio = ["dep:cpal"]
default = ["terminal"]
gui = [
    "dep:iced",
    "dep:iced_term",
]
multi-species = []
terminal = [
    "dep:crossterm",
    "dep:signal-hook",
    "dep:memory-stats",
    "dep:thiserror",
    "dep:tui-input",
]

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

[[bin]]
name = "tslime"
path = "src/main.rs"

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

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

[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"

[[test]]
name = "integration_app"
path = "tests/integration_app.rs"

[[test]]
name = "preset_config_snapshot"
path = "tests/preset_config_snapshot.rs"

[[test]]
name = "visual_regression"
path = "tests/visual_regression.rs"

[[bench]]
name = "agent_benchmark"
path = "benches/agent_benchmark.rs"
harness = false

[[bench]]
name = "diffusion_benchmark"
path = "benches/diffusion_benchmark.rs"
harness = false

[[bench]]
name = "rendering_benchmark"
path = "benches/rendering_benchmark.rs"
harness = false

[[bench]]
name = "trail_history_benchmark"
path = "benches/trail_history_benchmark.rs"
harness = false

[dependencies.clap]
version = "4.4"
features = ["derive"]

[dependencies.clap_complete]
version = "4.4"

[dependencies.cpal]
version = "0.15"
optional = true

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

[dependencies.gif]
version = "0.13"

[dependencies.iced]
version = "0.14"
features = [
    "canvas",
    "advanced",
]
optional = true

[dependencies.iced_term]
version = "0.7"
optional = true

[dependencies.image]
version = "0.24"

[dependencies.memory-stats]
version = "1.0"
optional = true

[dependencies.noise]
version = "0.9"

[dependencies.rand]
version = "0.8"

[dependencies.rand_xoshiro]
version = "0.6"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.signal-hook]
version = "0.3"
optional = true

[dependencies.thiserror]
version = "2.0"
optional = true

[dependencies.toml]
version = "0.8"

[dependencies.tui-input]
version = "0.15"
optional = true
default-features = false

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.proptest]
version = "1.4"

[target."cfg(windows)".dependencies.enable-ansi-support]
version = "0.2.1"

[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true