Crates.io | dcan-db |
lib.rs | dcan-db |
version | 0.1.0 |
created_at | 2025-09-25 04:51:58.95718+00 |
updated_at | 2025-09-25 04:51:58.95718+00 |
description | A simple CAN .dbc parser |
homepage | https://github.com/DMoore12/dcan-db |
repository | https://github.com/DMoore12/dcan-db |
max_upload_size | |
id | 1854203 |
size | 126,063 |
dcan-db
A simple CAN .dbc parser
dcan-db
is a lightweight Rust parser leveraging Chumsky
for performant file parsing.
use dcan_db::prelude::*;
fn main() {
let result = parse_dbc("./dbcs/simple.dbc");
let dbc = result.unwrap();
println!("{:#?}", dbc);
}