rustorio 0.1.2

The first game written and played entirely in Rust's type system. Not just do you play by writing Rust code, the rules of the game are enforced by the Rust compiler! If you can write the program so it compiles and doesn't panic, you win!
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"
name = "rustorio"
version = "0.1.2"
build = false
include = [
    "src",
    "Cargo.toml",
    "rust-toolchain.toml",
    "examples/*_new_game.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
The first game written and played entirely in Rust's type system. Not just do you play by
writing Rust code, the rules of the game are enforced by the Rust compiler! If
you can write the program so it compiles and doesn't panic, you win!"""
documentation = "https://docs.rs/rustorio"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/albertsgarde/rustorio"

[features]
cli = [
    "dep:clap",
    "dep:anyhow",
    "dep:dialoguer",
    "dep:thiserror",
]
default = ["cli"]

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

[[bin]]
name = "rustorio"
path = "src/bin/cli/main.rs"
required-features = ["cli"]

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

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

[dependencies.anyhow]
version = "1.0.100"
optional = true

[dependencies.clap]
version = "4.5.53"
features = ["derive"]
optional = true

[dependencies.dialoguer]
version = "0.12.0"
optional = true

[dependencies.rustorio-engine]
version = "0.1.1"

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

[lints.clippy]
missing_const_for_fn = "warn"