- owlry-core: swap meval → expr-solver-lib for calculator and Lua math API; add ln() alias for meval compatibility - owlry-lua: remove reqwest and meval (network features belong in plugins); add vendored feature flag so distro builds can link against system lua54 - owlry-rune: remove reqwest (same reason) - aur/owlry-rune: fix depends (gcc-libs only; owlry-core → optdepends) - aur/owlry-lua: fix depends (gcc-libs + lua54; owlry-core → optdepends) - aur/owlry: add chmod -R a+rX for example plugins - justfile: log aur-local-test output to build-logs/ - .gitignore: exclude build-logs/ and test-build-output files - README: minor improvements (SIGHUP reload hint, plugin_config example)
52 lines
1.1 KiB
TOML
52 lines
1.1 KiB
TOML
[package]
|
|
name = "owlry-lua"
|
|
version = "1.1.3"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Lua runtime for owlry plugins - enables loading user-created Lua plugins"
|
|
keywords = ["owlry", "plugin", "lua", "runtime"]
|
|
categories = ["development-tools"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"] # Compile as dynamic library (.so)
|
|
|
|
[features]
|
|
# Bundle Lua 5.4 from source (no system lua dep). Enabled by default for dev
|
|
# and CI builds. Distribution packages should disable this and add lua54 as a
|
|
# system dependency instead.
|
|
default = ["vendored"]
|
|
vendored = ["mlua/vendored"]
|
|
|
|
[dependencies]
|
|
# Plugin API for owlry (shared types)
|
|
owlry-plugin-api = { path = "../owlry-plugin-api" }
|
|
|
|
# ABI-stable types
|
|
abi_stable = "0.11"
|
|
|
|
# Lua runtime
|
|
mlua = { version = "0.11", features = ["lua54", "send", "serialize"] }
|
|
|
|
# Plugin manifest parsing
|
|
toml = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
# Version compatibility
|
|
semver = "1"
|
|
|
|
# Logging
|
|
log = "0.4"
|
|
|
|
|
|
# Date/time for os.date
|
|
chrono = "0.4"
|
|
|
|
# XDG paths
|
|
dirs = "5.0"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|