This is a small library that allows for the creation of trees that represent symbolic expressions using Ketos.
Add the following to Cargo.toml
:
[depenencies]
ketree = "0.5.2"
Then, to the crate root, add:
extern crate ketree;
You will then need to add Ketos to your project and write a struct that implements ModuleLoader. This struct can then be passed to an instance of TreeBuilder to create a tree. Check tests for an example.