Skip to content

elle-lisp/plugins

Repository files navigation

Elle Plugins

Dynamically-loaded Rust libraries that extend Elle with additional primitives.

Plugins use the stable elle-plugin ABI — they can be compiled independently from elle and loaded at runtime without version matching.

Building

As a submodule of elle (recommended)

This repo is available as a git submodule at plugins/ in the elle repo. From the elle root:

git submodule update --init plugins
make plugins          # portable plugins (no system deps)
make plugins-all      # all plugins (requires vulkan, wayland, egui libs)

This places .so files in elle's target/release/, where the plugin/ import prefix looks. You can also use make directly from the submodule directory — the Makefile detects the parent elle repo and sets --target-dir automatically.

Standalone

cargo build --release                    # all plugins
cargo build --release -p elle-crypto     # single plugin

When built standalone, .so files land in target/release/ within this repo. Elle won't find them via the plugin/ prefix unless you either move them to elle's target/release/ or point elle at them:

elle --path=/path/to/plugins/target/release

Plugins

Plugin Description
elle-arrow Apache Arrow columnar data
elle-crypto SHA-2 hashing and HMAC
elle-csv CSV reading and writing
elle-egui Immediate-mode GUI
elle-hash Universal hashing (SHA-3, BLAKE3, CRC32, etc.)
elle-image Image processing
elle-jiff Date/time operations
elle-mqtt MQTT client
elle-msgpack MessagePack serialization
elle-oxigraph RDF triple store
elle-polars DataFrames (Polars)
elle-protobuf Protocol Buffers
elle-random Pseudo-random numbers
elle-regex Regular expressions
elle-selkie Mermaid diagram rendering
elle-svg SVG generation
elle-syn Rust source parsing
elle-tls TLS client/server (rustls)
elle-toml TOML parsing
elle-tree-sitter Multi-language parsing
elle-vulkan Vulkan GPU compute
elle-wayland Wayland compositor interaction
elle-xml XML parsing
elle-yaml YAML parsing

Writing a new plugin

See the elle docs for a step-by-step guide.

About

rust-based plugins for elle

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors