MysteryBlokHed / databind

Expand the functionality of Minecraft Datapacks.
https://databind.rtfd.io/en/stable
GNU General Public License v3.0
4 stars 0 forks source link

Change project to a library with a binary file #129

Closed MysteryBlokHed closed 3 years ago

MysteryBlokHed commented 3 years ago

Instead of Databind only being available as a CLI, changing it to a library with a binary available would make it possible for other developers to write their own frontends to Databind or to embed it in their own applications. I haven't tried it, but rust already seems to support it with something like the following added to the Cargo.toml file of a library:

[[bin]]
name = "databind"
path = "src/main.rs"