3 unstable releases

0.2.2 Apr 18, 2020
0.2.1 Apr 18, 2020
0.1.0 Apr 18, 2020

#13 in #mathml

22 downloads per month

MIT/Apache

15KB
370 lines

Crates.io Documentation Build Codecov

A parser for SBML

This is a parser for the Systems Biology Markup Language (SBML).

Very early stage! I also wrote a companion MathML parser that this crate uses.

Example

let example=r#"<?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level3/version2/core" level="3" version="2">
    <model timeUnits="second" extentUnits="mole" substanceUnits="mole">
    </model>
</sbml>"#;
let result = parse_document(example);

Dependencies

~0.8–1.5MB
~34K SLoC