[package]
edition = "2021"
name = "erd_rs"
version = "0.1.0"
authors = ["Sengrith PROM <psengrith.dev@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A command line utility that take Rust code as the source of truth to produce a entity relation diagram markdown file (e.g., mermaid.js file)."
homepage = "https://psr-portfolio.web.app"
readme = "README.md"
keywords = [
"entity-relation",
"diagram",
"markdown",
"mermaid-js",
"utilities",
]
categories = ["command-line-utilities"]
license = "GPL-3.0-or-later"
repository = "https://github.com/psengrith/erd_rs"
[lib]
name = "erd_rs"
path = "src/lib.rs"
[[bin]]
name = "erd_rs"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.95"
[dependencies.clap]
version = "4.5.27"
features = ["derive"]
[dependencies.clap_derive]
version = "4.5.24"
[dependencies.regex]
version = "1.11.1"
[dependencies.syn]
version = "2.0.96"
features = [
"full",
"parsing",
]
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-subscriber]
version = "0.3.19"
features = [
"env-filter",
"registry",
]