linesmith-plugin 0.1.3

Internal rhai plugin host for linesmith. No SemVer guarantee for direct dependents — depend on the `linesmith` binary or accept breakage between minor versions.
Documentation
[package]
name = "linesmith-plugin"
description = "Internal rhai plugin host for linesmith. No SemVer guarantee for direct dependents — depend on the `linesmith` binary or accept breakage between minor versions."
# Workspace-internal in v0.1 per ADR-0018. Like `linesmith-core`, this
# crate is published to crates.io as scaffolding so the parent
# `linesmith` binary's transitive-dep graph resolves on the registry;
# the public surface is free to refactor without SemVer cost until a
# publish decision lands (post-v1.0 at the earliest).
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
readme.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true

[lints.rust]
# `[lints] workspace = true` is all-or-nothing in stable Cargo and
# can't coexist with the per-crate clippy override below; per-lint
# workspace inheritance isn't supported either. So this block
# duplicates `[workspace.lints]` inline. Keep in sync with the root.
unsafe_code = "forbid"
unreachable_pub = "warn"

[lints.clippy]
redundant_pub_crate = "warn"
# Workspace-level `clippy.toml` disallows `linesmith_plugin::build_engine`
# to channel consumers through `linesmith_core::plugins::build_engine`'s
# warn-emitter wrapper. This crate IS that function's home — its own
# tests legitimately call the bare constructor. Disabling the lint
# here keeps the consumer-facing nudge while letting the defining
# crate test itself.
disallowed_methods = "allow"

[dependencies]
jiff.workspace = true
rhai.workspace = true

[dev-dependencies]
tempfile.workspace = true