[package] name = "goingson-plugin-runtime" version.workspace = true edition.workspace = true description = "Rhai plugin runtime for GoingsOn" [dependencies] # Plugin engine rhai = { workspace = true } # File watching for hot-reload notify = { workspace = true } # Manifest parsing toml = { workspace = true } # Core types goingson-core = { workspace = true } # Async support async-trait = { workspace = true } tokio = { workspace = true } # Serialization serde = { workspace = true } serde_json = { workspace = true } # Error handling thiserror = { workspace = true } # Utilities uuid = { workspace = true } chrono = { workspace = true } # CSV parsing csv = { workspace = true } # Logging tracing = { workspace = true } [dev-dependencies] tempfile = "3"