1 unstable release

0.1.0 Jun 8, 2019

#1 in #automaat

Download history 14/week @ 2024-07-23 27/week @ 2024-07-30 19/week @ 2024-08-06 18/week @ 2024-08-13 15/week @ 2024-08-20 16/week @ 2024-08-27 15/week @ 2024-09-03 10/week @ 2024-09-10 16/week @ 2024-09-17 24/week @ 2024-09-24 11/week @ 2024-10-01 11/week @ 2024-10-08 14/week @ 2024-10-15 5/week @ 2024-10-22 14/week @ 2024-10-29 25/week @ 2024-11-05

69 downloads per month
Used in 9 crates

MIT/Apache

9KB
68 lines

Automaat Core

🚧 Work In Progress 🚧


lib.rs:

Automaat

Automaat can help you automate mundane and repeated tasks in a flexible way.

Its goal is to provide a simplified, user-friendly, and highly-customisable interface that combines "customer support" software, job schedulers and ad-hoc shell scripts you might currently be using at your organisation.

Automaat consists of several core crates:

  • automaat-core (this one) – Provides the basic building blocks for the functionality of the other crates.
  • automaat-server – A server application, with an API to run processors, and persistent storage.
  • automaat-web-client – A WebAssembly-based application to interact with the server, and run processors.

There are also serveral existing processor implementations, each in their own crate:

Using the automaat-server crate, you can combine multiple processors into a single Pipeline, combined with a set of runtime Variables, to create easy-to-use workflows to perform a specific task.

Core

This crate, automaat-core, provides the main Processor trait to create new processors, and run them.

It also provides access to the Context object, to share state between multiple processors in a single run.

If you want to write your own processor, be sure to check out the documentation of the Processor trait.

Dependencies

~1.7–10MB
~119K SLoC