[package]
edition = "2024"
name = "bowling"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A generic, typestate-driven bowling game engine"
documentation = "https://docs.rs/bowling"
readme = "README.md"
keywords = [
"bowling",
"game-engine",
"scoring",
"typestate",
"sports",
]
categories = [
"game-engines",
"games",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/ferrohd/bowling"
[lib]
name = "bowling"
path = "src/lib.rs"
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[dependencies.thiserror]
version = "2"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.trybuild]
version = "1"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
return_self_not_must_use = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "deny"