[package]
edition = "2024"
rust-version = "1.85"
name = "plotline"
version = "0.2.0"
authors = ["David Palmer"]
build = false
exclude = [
".github/",
"art/",
"RELEASING.md",
"deny.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Engine-independent sequences with branching, subroutines, and external waits"
readme = "README.md"
keywords = [
"sequence",
"dialogue",
"quest",
"scripting",
"gamedev",
]
categories = [
"game-development",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dp88/plotline"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["std"]
std = []
[lib]
name = "plotline"
path = "src/lib.rs"
[[example]]
name = "dialog"
path = "examples/dialog.rs"
[lints.clippy]
single_match_else = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"