Library Usage
artemis-core is a very simple Rust library. It currently only exposes two (2)
functions:
parse_toml_file(path: &str)- Parse a TOML collection file at provided pathparse_toml_data(data: &[u8])- Parse bytes associated with a TOML collection
Both functions will return nothing on success (artemis-core handles data
output) or an error.
Logging
artemis-core includes a logging feature that tracks internal issues it may
encounter when executing. If you import artemis-core into your own project you
may register you own logger, however that will then disable the builtin logger
in artemis-core.