axumstart_db 0.1.2

A #[repository] macro that generates sqlx-backed repository implementations from trait method names, for Postgres, MySQL, or SQLite
# 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"
name = "axumstart_db"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A #[repository] macro that generates sqlx-backed repository implementations from trait method names, for Postgres, MySQL, or SQLite"
readme = "README.md"
license = "MIT"
repository = "https://github.com/axumstart/axumstart"

[features]
mysql = [
    "axumstart_db_macros/mysql",
    "sqlx/mysql",
]
postgres = [
    "axumstart_db_macros/postgres",
    "sqlx/postgres",
]
sqlite = [
    "axumstart_db_macros/sqlite",
    "sqlx/sqlite",
]

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

[dependencies.axumstart_db_macros]
version = "0.1.2"

[dependencies.sqlx]
version = "0.9.0"
features = ["runtime-tokio"]
default-features = false