Crates.io | aanyx |
lib.rs | aanyx |
version | 0.2.0 |
source | src |
created_at | 2023-05-03 10:35:36.660499 |
updated_at | 2023-05-10 06:34:54.383098 |
description | With this crate, you can easily create a modular Rust application that can dynamically load functions and plugins at runtime. |
homepage | |
repository | https://github.com/andrea-alfonsi/nyx |
max_upload_size | |
id | 855268 |
size | 49,222 |
This Rust Cargo package is designed to facilitate modularity in Rust applications. With this crate, you can easily create a modular Rust application that can dynamically load functions and plugins at runtime. This makes it easy to extend and customize your application without having to recompile or modify the core code.
This crate contains 4 module:
The host
contains the tools and utilities that a develoepr should use in the main app, when creating a plugin manager.
The pdk
contains some utilities and tools to test plugins locally before releasing them. It implements some structures that inspect what a plugin is doing
The plugin
module contains the macros and the structs definitions to allow the plugin manager to understand the structure of the plugin
This crate uses the word system
meaning a function that accepts any number of arguments. This simplifies the structure of the code becuse understanding which arguemnts should be bessedt oa function becomes a task of he compiler
This crate doesn't use unsafe functions except in pdk
for testing purpose
Examples of how to use the crate can be found in Examples