[](https://crates.io/crates/rust_sbml)
[](https://docs.rs/rust_sbml/)
[](https://github.com/carrascomj/rust_sbml)
[](https://codecov.io/gh/carrascomj/rust_sbml)
# A parser for SBML
This is a parser for the Systems Biology Markup Language (SBML).
## Example
```rust
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);
```