[package]
edition = "2021"
rust-version = "1.75"
name = "remodel-core"
version = "0.1.0"
authors = ["Hebert <hebertcisco@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Database modeling engine: conceptual (ER) to logical (relational) transformation and SQL DDL generation. A Rust reimplementation of the core engine of brModelo."
homepage = "https://github.com/hebert/Remodel"
documentation = "https://docs.rs/remodel-core"
readme = "README.md"
keywords = [
"database",
"modeling",
"er-diagram",
"sql",
"ddl",
]
categories = [
"database",
"data-structures",
"parser-implementations",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/hebert/Remodel"
[lib]
name = "remodel_core"
path = "src/lib.rs"
[[test]]
name = "sql_ddl"
path = "tests/sql_ddl.rs"
[[test]]
name = "validation"
path = "tests/validation.rs"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.petgraph]
version = "0.6"
features = ["serde-1"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.insta]
version = "1"
features = ["yaml"]
[dev-dependencies.pretty_assertions]
version = "1"