1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//! Typed FCALL wrappers and Lua library loader for FlowFabric Valkey Functions.
// Issue #171: modules that reach into `ferriskey::` are gated behind the
// `valkey-client` feature (default-on). Without the feature, ff-script is
// a pure Lua-source loader + typed error enum and re-exports for ff-core's
// `EngineError` classification — sufficient for `ff-sdk
// --no-default-features` consumers that do NOT want the Valkey transport.
pub use ScriptError;
pub use ;
/// The compiled FlowFabric Lua library source.
///
/// Generated from `lua/*.lua` by `scripts/gen-ff-script-lua.sh` and checked
/// into the crate as `flowfabric.lua` so it ships inside the published
/// tarball. CI (`matrix.yml`) fails if this file drifts from what the
/// script would produce.
pub const LIBRARY_SOURCE: &str = include_str!;
/// Expected library version. Must match `FCALL ff_version 0` return.
///
/// **Single source of truth is `lua/version.lua`.** The gen script
/// extracts the `return 'X'` literal and writes it to
/// `flowfabric_lua_version`. Bump `lua/version.lua` whenever any Lua
/// function's KEYS or ARGV arity changes, or a new function is added.
pub const LIBRARY_VERSION: &str = include_str!;
// Re-export the trait so callers can use it without reaching into result.
pub use FromFcallResult;