sqlx-dsl-dao 0.0.1

Build-time DAO code generator for sqlx (SQLite): generates CRUD from table schema plus dynamic-SQL functions from a MyBatis-like DSL.
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "sqlx-dsl-dao"
version = "0.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Build-time DAO code generator for sqlx (SQLite): generates CRUD from table schema plus dynamic-SQL functions from a MyBatis-like DSL."
readme = "README.md"
keywords = [
    "sqlx",
    "sqlite",
    "codegen",
    "dao",
    "orm",
]
categories = [
    "database",
    "development-tools::build-utils",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/DAIRO-HY/sqlx-dsl-dao"

[lib]
name = "sqlx_dsl_dao"
path = "src/lib.rs"

[dependencies.chrono]
version = "0.4"

[dependencies.prettyplease]
version = "0.2"

[dependencies.serde]
version = "1"
features = [
    "derive",
    "rc",
]

[dependencies.sqlx]
version = "0.8"
features = [
    "runtime-async-std",
    "sqlite",
    "macros",
]

[dependencies.syn]
version = "2"
features = [
    "full",
    "extra-traits",
    "parsing",
    "visit",
]