dcan-db 0.1.0

A simple CAN .dbc parser
Documentation
# `dcan-db`


[![crates.io](https://img.shields.io/crates/v/dcan-db.svg)](https://crates.io/crates/dcan-db)
[![docs](https://docs.rs/dcan-db/badge.svg)](https://docs.rs/dcan-db)
[![license](https://img.shields.io/github/license/dmoore12/dcan-db)](https://github.com/DMoore12/dcan-db#license)
[![crates.io](https://img.shields.io/crates/d/dcan-db.svg)](https://crates.io/crates/dcan-db)

*A simple CAN .dbc parser*

`dcan-db` is a lightweight Rust parser leveraging `Chumsky` for performant file parsing.

## Usage


```rust
use dcan_db::prelude::*;

fn main() {
    let result = parse_dbc("./dbcs/simple.dbc");

    let dbc = result.unwrap();
    println!("{:#?}", dbc);
}
```