[package]
edition = "2024"
name = "brink-runtime"
version = "0.0.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime/VM for executing compiled ink stories"
readme = "README.md"
keywords = [
"ink",
"narrative",
"compiler",
"interactive-fiction",
]
categories = [
"compilers",
"game-development",
]
license = "MIT"
repository = "https://github.com/syynth/brink"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[features]
testing = []
[lib]
name = "brink_runtime"
path = "src/lib.rs"
[[test]]
name = "corpus"
path = "tests/corpus.rs"
[[test]]
name = "locale"
path = "tests/locale.rs"
[[test]]
name = "run_story"
path = "tests/run_story.rs"
[[test]]
name = "shared_flow"
path = "tests/shared_flow.rs"
[[bench]]
name = "runtime"
path = "benches/runtime.rs"
harness = false
[dependencies.brink-format]
version = "0.0.4"
[dependencies.thiserror]
version = "2"
[dev-dependencies.divan]
version = "0.1"
[dev-dependencies.serde_json]
version = "1"
[lints.clippy]
allow_attributes = "warn"
clone_on_ref_ptr = "deny"
dbg_macro = "deny"
exit = "deny"
expect_used = "deny"
implicit_clone = "deny"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
rest_pat_in_fully_bound_structs = "warn"
todo = "deny"
undocumented_unsafe_blocks = "deny"
unwrap_used = "deny"
verbose_file_reads = "warn"
wildcard_dependencies = "deny"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
trivial_casts = "deny"
trivial_numeric_casts = "deny"
unsafe_code = "deny"