dbml-rs

Crates.iodbml-rs
lib.rsdbml-rs
version1.0.0-rc.1
sourcesrc
created_at2023-01-20 08:52:16.475481
updated_at2024-03-14 08:56:23.717337
descriptionA DBML Parser for Rust.
homepage
repositoryhttps://github.com/apskhem/dbml-rs
max_upload_size
id763243
size106,749
Apisit Ritreungroj (apskhem)

documentation

README

DBML parser for Rust

crate MSRV MIT or Apache 2.0 licensed unsafe forbidden

DBML parser implemented in Rust programming language.

How to use it?

use dbml_rs::*;
use std::fs;

fn main() {
  let input = fs::read_to_string("path/to/your/file.dbml");
  let result = parse_dbml(&input);
}

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Always welcome you to participate, contribute and together.

Commit count: 16

cargo fmt