[package]
edition = "2024"
rust-version = "1.89.0"
name = "soushi"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Soushi (草紙) — Rhai scripting engine: shared engine setup, builtins, and script loading"
homepage = "https://github.com/pleme-io/soushi"
readme = "README.md"
keywords = [
"rhai",
"scripting",
"automation",
"engine",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/pleme-io/soushi"
[lib]
name = "soushi"
path = "src/lib.rs"
[[test]]
name = "loader"
path = "tests/loader.rs"
[dependencies.rhai]
version = "1.23"
features = [
"sync",
"internals",
]
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1