[package]
edition = "2024"
rust-version = "1.87.0"
name = "amazeing"
version = "0.8.1"
authors = ["indrajit"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Amazeing is a maze generator/solver application with simulation/visualization."
homepage = "https://eendroroy.github.io/amazeing"
documentation = "https://docs.rs/amazeing"
readme = "README.md"
keywords = ["maze"]
categories = [
"algorithms",
"visualization",
]
license = "AGPL-3.0"
repository = "https://github.com/eendroroy/amazeing"
[lib]
name = "amazeing"
path = "src/lib.rs"
[[bin]]
name = "amazeing"
path = "src/main.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.clap]
version = "4.6.1"
features = [
"color",
"derive",
]
[dependencies.macroquad]
version = "0.4.14"
[dependencies.rand]
version = "0.10.1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.toml]
version = "1.1.2"
[build-dependencies.clap]
version = "4.6.1"
features = ["derive"]
[build-dependencies.clap_complete]
version = "4.6.5"